kotlin编程语言_Kotlin初学者编程基础

kotlin编程语言

什么是Kotlin? (What is Kotlin?)

Kotlin is a programming language developed by Jetbrains, the company behind some of the world’s most popular IDEs like IntelliJ and Pycharm.

Kotlin是Jetbrains开发的一种编程语言,该公司是IntelliJ和Pycharm等世界上最流行的IDE的背后的公司。

It serves as a replacement for Java and runs on the JVM. It has been in development for close to 6 years and it hit 1.0 just a year ago.

它可以替代Java并在JVM上运行。 它已经开发了将近6年,一年前就达到了1.0。

The developer community has embraced Kotlin to such an extent that Google announced first class support for the language for Android Development at Google I/O 2017.

开发人员社区对Kotlin的接受程度如此之高,以至于Google在2017年I / O大会上宣布了对Android开发语言的一流支持。

(Version)

As of this writing, the latest stable release of Kotlin happens to be version 1.2.71

在撰写本文时,Kotlin的最新稳定版本恰好是1.2.71版。

安装 (Installation)

Before proceeding with the installation instructions for Kotlin, you need to make sure that you have set up JDK (Java Development Kit) set up on your system.

在继续进行Kotlin的安装说明之前,您需要确保已在系统上设置了JDK(Java开发套件)

If you do not have JDK installed on your computer, head over to the Installation section on this link to learn how to set it up.

如果您的计算机上尚未安装JDK,请转到此链接上的“ 安装”部分 以了解如何进行设置。

Kotlin works with JDK 1.6+ so make sure you get the correct version installed. Once you are done setting up JDK, proceed with the following steps.

Kotlin与JDK 1.6+一起使用,因此请确保您安装了正确的版本。 设置完JDK后,请继续以下步骤。

IntelliJ IDEA (IntelliJ IDEA)

The quickest way to get Kotlin running on your machines is by using it alongside IntelliJ IDEA. This is the recommended IDE for Kotlin because of the tooling support that is provided by Jetbrains. You can grab the Community Edition of IntelliJ from JetBrains.

使Kotlin在您的机器上运行的最快方法是将其与IntelliJ IDEA一起使用。 这是Kotlin推荐的IDE,因为Jetbrains提供了工具支持。 您可以从JetBrains获取IntelliJ 社区版 。

Once you have installed IntelliJ you can basically get started with your first project in Kotlin without any further configurations.

一旦安装了IntelliJ,您就可以基本开始在Kotlin中的第一个项目,而无需进行任何其他配置。

Create a New Project and make sure you select the Java Module. Select the Kotlin checkbox on that screen

创建一个新项目 ,并确保选择Java模块。 选中该屏幕上的Kotlin复选框

Give your project a name and click Finish.

为您的项目命名,然后单击“完成”。

You will now be taken to the main editor where you will see your project files organized in the following manner.

现在,您将被带到主编辑器,您将在其中看到以以下方式组织的项目文件。

In order to verify your installation, create a new Kotlin file in the src folder and name it app (or anything else that suits you)

为了验证您的安装,请在src文件夹中创建一个新的Kotlin文件并将其命名为app (或其他适合您的名称)

Once you have the file created, type out the following cremonial Hello World code. Don’t worry if it doesn’t make sense right away, it will be dealt with in detail later on in the guide.

创建文件后,键入以下常用的Hello World代码。 不用担心,如果这没有意义,它将在本指南的后面部分中详细介绍。

fun main (args: Array<String>) {println("Hello World!")
}

You can now run this program by either clicking on the Kotlin icon on the gutter (left side of your editor with line numbers)

现在,您可以通过单击装订线上的Kotlin图标(带有行号的编辑器左侧)来运行此程序。

If everything goes fine, you should see the message Hello World! in your Run window as shown below

如果一切正常,您应该看到消息Hello World! 在运行窗口中,如下所示

(Eclipse)

While IntelliJ is the recommended IDE for developing with Kotlin, it is definitely not the only option out there. Eclipse happens to be another popular IDE of choice among Java developers and Kotlin is supported by Eclipse as well.

尽管IntelliJ是建议使用Kotlin开发的IDE,但绝对不是唯一的选择。 Eclipse恰好是Java开发人员中另一个受欢迎的IDE,并且Eclipse也支持Kotlin。

After setting up the JDK on your system, follow the instructions below.

在系统上设置JDK后 ,请按照以下说明进行操作。

Download Eclipse Neon for your operating system and once you have successfully installed it on your system, download the Kotlin Plugin for Eclipse from the Eclipse Marketplace.

下载适用于您的操作系统的Eclipse Neon ,并在将其成功安装到系统上之后,从Eclipse Marketplace下载适用于Eclipse的Kotlin插件

NOTE: You can also do the same by going into Help -> Eclipse Marketplace and then search for Kotlin Plugin

注意:您也可以通过进入“帮助”->“ Eclipse市场”,然后搜索“ Kotlin插件”来执行此操作。

Once, the plugin is installed you are pretty much done but it would be a good idea to take the IDE for a spin with a quick Hello World sample.

插件安装完成后,您已经完成了很多工作,但是最好通过快速的Hello World示例来尝试一下IDE。

Create a new Kotlin Project by clicking on File -> New -> Kotlin Project

通过单击文件->新建-> Kotlin项目创建一个新的Kotlin项目

An empty project will be created with a directory structure quite similar to a Java project. It would look something like this

将创建一个空项目,其目录结构与Java项目非常相似。 看起来像这样

Go ahead and create a new Kotlin file in the src folder

继续,在src文件夹中创建一个新的Kotlin文件

Once that is done go ahead and type out the following code. Don’t worry if it does not make sense right now, it will be covered later in the guide.

完成后,继续并键入以下代码。 不用担心,如果现在没有意义,它将在本指南的后面部分介绍。

fun main (args: Array<String>) {println("Hello World!")
}

Now that you are done typing out the Hello World code, go ahead and run it. To run the file, right click anywhere inside the editor and click on Run As -> Kotlin Application

现在您已经完成了输入Hello World代码的操作,请继续运行它。 要运行文件,请右键单击编辑器内的任何位置,然后单击运行方式-> Kotlin应用程序

If all goes well, the console window would open to show you the output.

如果一切顺利,将打开控制台窗口以显示输出。

在终端上使用独立编译器 (Using the standalone compiler on the terminal)

If you are someone who prefers doing things in a more manual way and do not want to tie yourself down to an editor/IDE you might wanna use the Kotlin compiler.

如果您喜欢以一种更手动的方式进行操作并且不想将自己束缚于编辑器/ IDE,那么您可能想使用Kotlin编译器。

下载编译器 (Downloading the compiler)

With every release of Kotlin, Jetbrains ship a standalone compiler which can be downloaded from the GitHub releases. Version 1.1.51 happens to be the latest at the time of this writing.

对于Kotlin的每个发行版,Jetbrains都提供了一个独立的编译器,可以从GitHub发行版中下载。 在撰写本文时,版本1.1.51恰好是最新版本。

手动安装 (Manual Installation)

Once you have downloaded the compiler you need to unzip it and proceed with the standard installation using the installation wizard. Adding the bin directory to the system path is an optional step. It contains the scripts that are necessary to compile and run Kotlin on Windows, Linux and macOS.

下载完编译器后,需要解压缩该编译器,然后使用安装向导进行标准安装。 将bin目录添加到系统路径是可选步骤。 它包含在Windows,Linux和macOS上编译和运行Kotlin所需的脚本。

通过自制软件安装 (Installation via Homebrew)

You can install the compiler on macOS using Homebrew which is a package manager for macOS. Launch the Terminal app and issue the following commands

您可以使用Homebrew(这是macOS的软件包管理器)在macOS上安装编译器。 启动终端应用程序并发出以下命令

$ brew update
$ brew install kotlin

通过SDKMAN安装! (Installation via SDKMAN!)

Another simple way of installing the Kotlin compiler on macOS, Linux, Cygwin, FreeBSD and Solaris is by using SDKMAN!. Launch the terminal and issue the following commands

在macOS,Linux,Cygwin,FreeBSD和Solaris上安装Kotlin编译器的另一种简单方法是使用SDKMAN! 。 启动终端并发出以下命令

$ curl -s https://get.sdkman.io | bash

$ curl -s https://get.sdkman.io | bash

Follow the instructions on screen and once SDKMAN! is setup issue the follwoing command inside terminal

按照屏幕上的说明进行操作,然后按一下SDKMAN! 是安装程序发出终端内的follwoing命令

$ sdk install kotlin

$ sdk install kotlin

As with all previous installation options, it would be a good idea to test run the installation.

与以前的所有安装选项一样,最好对运行安装进行测试。

Open a text editor of your choice and write a basic Kotlin program given below

打开您选择的文本编辑器,并编写以下基本的Kotlin程序

fun main(args: Array<String>) {println("Hello, World!")
}

Save this file with a .kt extension. You are now ready to compile it and see the results. To do so, issue the following command

使用.kt扩展名保存此文件。 现在您可以对其进行编译并查看结果了。 为此,发出以下命令

$ kotlinc hello.kt -include-runtime -d hello.jar

$ kotlinc hello.kt -include-runtime -d hello.jar

the -d option tells the compiler what you want the output to be called. The -include-runtime option makes the resulting .jar file self-contained and runnable by including the Kotlin runtime library in it.

-d选项告诉编译器要调用输出的内容。 -include-runtime选项通过在其中包含Kotlin运行时库,使生成的.jar文件可独立运行。

If there were no compilation errors, run the application using the following command

如果没有编译错误,请使用以下命令运行应用程序

$ java -jar hello.jar

$ java -jar hello.jar

If all goes well, you should see Hello World! printed on your terminal screen

如果一切顺利,您应该会看到Hello World! 打印在您的终端屏幕上

$ java -jar hello.jar       
Hello, World!

Congratulations you have successfully set up the Kotlin compiler and development environment on your system. We will cover all of the intricacies and fun parts of Kotlin in this guide, but you can get a head start if you want by going to the Try Kotlin website and going through the exercises there.

恭喜,您已成功在系统上设置Kotlin编译器和开发环境。 我们将在本指南中介绍Kotlin的所有复杂之处和有趣的部分,但是如果您愿意,可以直接访问Try Kotlin网站并在那里进行练习,从而抢先一步。

文献资料 (Documentation)

One of the greatest things about Kotlin is it’s comprehensive and well structured documentation. Even if you are new to programming, you will find yourself right at home with the docs. They do a pretty amazing job at laying it all out in a well structured manner. You can check out the official documentation at this link.

关于Kotlin的最大优点之一就是它的内容全面且结构合理。 即使您不熟悉编程,也可以在文档中找到适合自己的地方。 他们以结构良好的方式将所有内容布置得非常出色。 您可以在此链接中查看官方文档。

有关Kotlin的更多信息 (More info on Kotlin)

  • Develop native Android apps with Kotlin - Full Course

    使用Kotlin开发本机Android应用-完整课程

  • Why you should try Kotlin instead of Java

    为什么您应该尝试Kotlin而不是Java

  • How to build an Android messenger app with Kotlin

    如何使用Kotlin构建Android Messenger应用

翻译自: https://www.freecodecamp.org/news/kotlin-programming-basics-for-beginners/

kotlin编程语言

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/390418.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

记一个蒟蒻的绝望

感觉现在…… 怎么讲&#xff0c;心挺冷的。 今天一月五号了。距离省选&#xff0c;时间好短啊。 我还有那么多东西不懂。甚至听都没听说过。 等到真正去省选的时候&#xff0c;我可能跟现在一样&#xff0c;什么都不会。 我的名字能不能被看到都不知道。哈&#xff0c;还进队呢…

671. 二叉树中第二小的节点

给定一个非空特殊的二叉树&#xff0c;每个节点都是正数&#xff0c;并且每个节点的子节点数量只能为 2 或 0。如果一个节点有两个子节点的话&#xff0c;那么该节点的值等于两个子节点中较小的一个。 更正式地说&#xff0c;root.val min(root.left.val, root.right.val) 总…

CentOS查询端口占用和清除端口占用的程序

1、查询端口号占用&#xff0c;根据端口查看进程信息 [rootserver2 ~]# lsof -i:80COMMAND PID USER FD TYPE DEVICE SIZE NODE NAMEhttpd 5014 root 3u IPv4 14346 TCP server2:http (LISTEN)2、根据进程号查看进程对应的可执行程序 ps -f -p 进程号# p…

Android基础夯实--你了解Handler有多少?

概述 对于刚入门的同学来说&#xff0c;往往都会对Handler比较迷茫&#xff0c;到底Handler是个什么样的东西。当然&#xff0c;可能对于一些有工作经验的工程师来说&#xff0c;他们也不一定能很准确地描述&#xff0c;我们来看下API的介绍。 Handler是用来结合线程的消息队列…

spring与springBoot不同之处

( 1&#xff09;遵循“习惯优于配置”的原则&#xff0c;使用Spring Boot只需要很少的配置&#xff0c;大部分的时候我们直接使用默认的配置即可&#xff1b; &#xff08;2&#xff09;项目快速搭建&#xff0c;可以无需配置的自动整合第三方的框架&#xff1b; &#xff08;3…

sketch-a-net_Adobe XD,Sketch,Figma,InVision-如何在2020年选择最佳设计软件

sketch-a-netComparing Adobe XD vs Sketch vs Figma vs InVision studio is a very common topic among designers who are looking for the best design software. 在寻求最佳设计软件的设计师中&#xff0c;比较Adobe XD&#xff0c;Sketch&#xff0c;Figma和InVision Stud…

merge intervals(合并间隔)

Given a collection of intervals, merge all overlapping intervals. For example,Given [1,3],[2,6],[8,10],[15,18],return [1,6],[8,10],[15,18]. 题目没有说所有间隔的start是依次增加的。所以&#xff0c;为了方便讨论&#xff0c;我们要将所有间隔按照start升序排列。因…

剑指 Offer 49. 丑数

我们把只包含质因子 2、3 和 5 的数称作丑数&#xff08;Ugly Number&#xff09;。求按从小到大的顺序的第 n 个丑数。 示例: 输入: n 10 输出: 12 解释: 1, 2, 3, 4, 5, 6, 8, 9, 10, 12 是前 10 个丑数。 说明: 1 是丑数。n 不超过1690。 解题思路 使用小根堆&#xf…

维护旧项目_为什么您的旧版软件难以维护-以及如何处理。

维护旧项目Believe it or not, some organizations still rely on legacy software to carry out operations even though newer and more versatile options are available. We know that “old is gold”, but legacy applications cannot glitter forever. As such, these o…

python--内置函数

内置函数现在python一共为我们提供了68个内置函数&#xff0c;讲述过程&#xff1a;一、其他中的12个 &#xff08;一&#xff09;执行 字符串 类型代码的执行 1 eval执行有意义的字符串 ,有返回值 print(eval(12))print(eval("print(美丽)")) #美丽 2 ex…

Nancy简单实战之NancyMusicStore(四):实现购物车

原文:Nancy简单实战之NancyMusicStore(四)&#xff1a;实现购物车前言 上一篇&#xff0c;我们完成了商品的详情和商品的管理&#xff0c;这一篇我们来完成最后的一个购物车功能。 购物车&#xff0c;不外乎这几个功能&#xff1a;添加商品到购物车&#xff0c;删除购物车中的商…

剑指 Offer 32 - I. 从上到下打印二叉树

从上到下打印出二叉树的每个节点&#xff0c;同一层的节点按照从左到右的顺序打印。 例如: 给定二叉树: [3,9,20,null,null,15,7], 3/ \9 20/ \15 7返回&#xff1a; [3,9,20,15,7] 提示&#xff1a; 节点总数 < 1000 解题思路 使用队列实现层序遍历 代码 /*** …

数据库表命名 单数复数_数据是还是数据是? “数据”一词是单数还是复数?

数据库表命名 单数复数Ill cut right to the chase: the word "data" is plural. Its the plural form of Latin word "datum." Many data. One datum.我将紧追其后&#xff1a;“数据”一词是复数形式。 它是拉丁文“基准”的复数形式。 许多数据。 一个基…

《七步掌握业务分析》读书笔记六

分析技术和呈现格式 词汇表 强有力沟通的一个重要内容是一致地使用术语和惯用语。每次谈话都涉及对术语的共同理解。 工作流图&#xff08;也称为流程图、UNL活动图和过程图&#xff09; 工作流程把一个或多个业务过程的细节可视化地呈现出来&#xff0c;以澄清理解或提出过程改…

Mysql数据库--语句整理/提升/进阶/高级使用技巧

一、基础 1、说明&#xff1a;创建数据库CREATE DATABASE database-name 2、说明&#xff1a;删除数据库drop database dbname3、说明&#xff1a;备份sql server--- 创建 备份数据的 deviceUSE masterEXEC sp_addumpdevice disk, testBack, c:\mssql7backup\MyNwind_1.dat--- …

1104. 二叉树寻路

在一棵无限的二叉树上&#xff0c;每个节点都有两个子节点&#xff0c;树中的节点 逐行 依次按 “之” 字形进行标记。 如下图所示&#xff0c;在奇数行&#xff08;即&#xff0c;第一行、第三行、第五行……&#xff09;中&#xff0c;按从左到右的顺序进行标记&#xff1b;…

javascript 代码_如何开始对JavaScript代码进行单元测试

javascript 代码We all know we should write unit tests. But, its hard to know where to start and how much time to devote to tests compared to actual implementation. So, where to start? And is it just about testing code or do unit tests have other benefits?…

个人作业——软件工程实践总结作业

一、请回望暑假时的第一次作业&#xff0c;你对于软件工程课程的想象 1&#xff09;对比开篇博客你对课程目标和期待&#xff0c;“希望通过实践锻炼&#xff0c;增强计算机专业的能力和就业竞争力”&#xff0c;对比目前的所学所练所得&#xff0c;在哪些方面达到了你的期待和…

(转)在阿里,我们如何管理代码分支?

阿里妹导读&#xff1a;代码分支模式的选择并没有绝对的正确和错误之分&#xff0c;关键是与项目的规模和发布节奏相匹配。阿里协同研发平台在经过众多实践历练后&#xff0c;总结出了一套独创的分支管理方法&#xff1a;AoneFlow&#xff0c;通过兼备灵活高效与简单实用的流程…

WIN10系统 截图或者某些程序时屏幕会自动放大怎么办

右击这个应用程序&#xff0c;兼容性&#xff0c;以兼容模式运行&#xff0c;同时勾选高DPI设置时禁止显示缩放即可