hello Kotlin

Eclipse + Kotlin 插件开发Kotlin


1.下载Eclipse 

本文使用Eclipse Committers   版本 Mars.1 Release (4.5.1)  ,下载链接 http://www.eclipse.org/downloads/    


2.安装Kotlin插件 

   (不需要  番羽  土蔷 )   eclipse--help--Eclipse Marketplace




3.安装完后重启Eclipse

4.新建Kotlin工程

File--New--Project    输入工程名,finish。 创建完Kotlin工程后Eclipse显示的是java工程的标志





5.创建Class文件

File--New--Other    选择Kotlin Class  ,输入类名 包名  完成







创建完成后工程结构



6.编写Hello world  ,点击Eclispe绿色运行按钮即可运行

package com.kotlin.test


fun main(args:Array<String>){
	println("hello world");	
	
	println(sum(1,2));
	
	println(hello("Kotlin"))
	
	println("""hello K
	o
	t
	l
	i
	n""")
	
	
}

fun hello(who:String):String="hello,"+who;

fun sum(a: Int, b: Int): Int {
	return a + b
}


输出如下:

hello world
3
hello,Kotlin
hello K
	o
	t
	l
	i
	n

代码截屏



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值