1- 下载与安装

CMD

To run Scala from the command-line, simply download the binaries and unpack the archive.

CMD : SBT(Simple Build Tool)

专门为scala语言设计的构建工具,包括运行环境,能够进行依赖管理、编译、打包等工作。
下载安装,重启系统,确认Path 变量和Classpath 变量已正确设置后,在命令行下直接运行sbt命令即可。

IDE:The Scala IDE (based on Eclipse)

  • SDKhttp://scala-ide.org/download/sdk.html),其实是为Scala定制的Eclipse版本(将Scala及插件集成到Eclipse),解压后是一个直接可用的Eclipse。在Help---》Installation details可以查看已安装的插件包。
  • Update site installationhttp://scala-ide.org/download/current.html),对于已有Eclipse可以选择插件方式安装,但要注意版本匹配关系。

IDE:IntelliJ IDEA with the Scala plugin

2- 在Windows系统安装Scala

2.1- 确认已成功安装配置Java环境

C:\Users\guowli>java -version
java version "1.8.0_101"
Java(TM) SE Runtime Environment (build 1.8.0_101-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.101-b13, mixed mode) C:\Users\guowli>javac -version
javac 1.8.0_101

2.2- 下载安装Scala安装包

注意:一般情况下,msi版本会自动配置环境变量,zip版本需要手动配置环境变量。
           为了避免莫名其妙的问题,建议使用zip版本手动配置并确认环境变量。

2.3- 设置环境变量

我的电脑---》属性---》高级系统设置---》环境变量
新建 SCALA_HOME变量
  • 变量名:SCALA_HOME
  • 变量值:Scala的安装目录

设置 Path 变量
找到系统变量下的"Path",单击编辑,添加路径:“ %SCALA_HOME%\bin;”,注意后面的分号 不要漏掉。
设置 Classpath 变量
(也可能为CLASSPATH,不区分大小写):找到找到系统变量下的"Classpath",单击编辑,添加如下内容
;%SCALA_HOME%\bin;%SCALA_HOME%\lib\dt.jar;%SCALA_HOME%\lib\tools.jar.;
如果没有,则单击"新建":
  • "变量名":ClassPath
  • "变量值":.;%SCALA_HOME%\bin;%SCALA_HOME%\lib\dt.jar;%SCALA_HOME%\lib\tools.jar.;
注意:"变量值"最前面的 .; 不要漏掉。最后单击确定即可。

2.4-验证

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved. C:\Users\guowli>scala -version
Scala code runner version 2.12.4 -- Copyright 2002-2017, LAMP/EPFL and Lightbend, Inc. C:\Users\guowli>sclac -version
'sclac' is not recognized as an internal or external command,
operable program or batch file. C:\Users\guowli>scala
Welcome to Scala 2.12.4 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_101).
Type in expressions for evaluation. Or try :help. scala> println("Hello Scala!")
Hello Scala! scala> :quit C:\Users\guowli>

2.5-scala命令帮助信息

C:\Users\guowli>scala -help
Usage: scala <options> [<script|class|object|jar> <arguments>]
or scala -help All options to scalac (see scalac -help) are also allowed. The first argument to scala after the options designates what to run. If no argument is given, the Scala REPL, an interactive shell, is started. Otherwise, the Scala runner will try to run the named target, either as
a compiled class with a main method, a jar file with a Main-Class manifest
header, or as a Scala source file to compile and run. The REPL accepts expressions to evaluate. Try `:help` to see more commands. The script runner will invoke the main method of a top-level object if
it finds one; otherwise, the script code is run locally to a synthetic
main method with arguments available in a variable `args`. Options to scala which reach the Java runtime: -Dname=prop passed directly to Java to set system properties
-J<arg> -J is stripped and <arg> passed to Java as-is
-nobootcp do not put the Scala jars on the boot classpath (slower) Other startup options: -i <file> preload <file> before starting the REPL
-I <file> preload <file>, enforcing line-by-line interpretation
-e <string> execute <string> as if entered in the REPL
-save save the compiled script in a jar for future use
-nc no compilation daemon: do not use the fsc offline compiler If the runner does not correctly guess how to run the target: -howtorun what to run <script|object|jar|guess> (default: guess) When running a script or using -e, an already running compilation daemon
(fsc) is used, or a new one started on demand. Use the -nc option to
create a fresh compiler instead. C:\Users\guowli>

3- 运行第一个scala程序

3.1- 官网示例

3.2- 利用Scala-IDE

  1. Create Scala Project : File--》New--》Scala Project--》Enter a project name.--》Next--》Check or Define the Scala build settings.---》Finsh
  2. Create Package : Choose src folder--》right-click,New--》Package--》Enter a package name.--》Finsh.
  3. Create Scala Object : Choose package--》right-click,New--》Scala Object--》Enter a object name.--》Finsh.
  4. Run code : Choose Scala file--》right-click,Run As--》Scala Application.
package test

object helloscala {
def main(args: Array[String]) {
println("Hello, Scala!")
}
}

3.3- 命令行下的编译与执行

anliven@DESKTOP-68OFQFP MINGW64 /d/Anliven/Anliven-Code/ScalaProjects
$ mkdir Testing anliven@DESKTOP-68OFQFP MINGW64 /d/Anliven/Anliven-Code/ScalaProjects
$ cd Testing/ anliven@DESKTOP-68OFQFP MINGW64 /d/Anliven/Anliven-Code/ScalaProjects/Testing
$ ls -l
total 0 anliven@DESKTOP-68OFQFP MINGW64 /d/Anliven/Anliven-Code/ScalaProjects/Testing
$ vim Testing.scala anliven@DESKTOP-68OFQFP MINGW64 /d/Anliven/Anliven-Code/ScalaProjects/Testing
$ cat Testing.scala
object Testing extends App {
println("Hello, "+args(0)+"!")
} anliven@DESKTOP-68OFQFP MINGW64 /d/Anliven/Anliven-Code/ScalaProjects/Testing
$ scalac Testing.scala anliven@DESKTOP-68OFQFP MINGW64 /d/Anliven/Anliven-Code/ScalaProjects/Testing
$ ls -l
total 13
-rw-r--r-- 1 anliven 197121 2752 10月 25 23:58 'Testing$.class'
-rw-r--r-- 1 anliven 197121 767 10月 25 23:58 'Testing$delayedInit$body.class'
-rw-r--r-- 1 anliven 197121 768 10月 25 23:58 Testing.class
-rw-r--r-- 1 anliven 197121 64 10月 25 23:58 Testing.scala anliven@DESKTOP-68OFQFP MINGW64 /d/Anliven/Anliven-Code/ScalaProjects/Testing
$ scala Testing Anliven
Hello, Anliven! anliven@DESKTOP-68OFQFP MINGW64 /d/Anliven/Anliven-Code/ScalaProjects/Testing
$ ls -l
total 13
-rw-r--r-- 1 anliven 197121 2752 10月 25 23:58 'Testing$.class'
-rw-r--r-- 1 anliven 197121 767 10月 25 23:58 'Testing$delayedInit$body.class'
-rw-r--r-- 1 anliven 197121 768 10月 25 23:58 Testing.class
-rw-r--r-- 1 anliven 197121 64 10月 25 23:58 Testing.scala anliven@DESKTOP-68OFQFP MINGW64 /d/Anliven/Anliven-Code/ScalaProjects/Testing
$

4- REPL(Read Evaluate Print Loop)

REPL(Read-Eval-Print Loop,交互式解释器)是轻量级的交互式的程序运行环境,适用于小段程序的实验和验证。

4.1-命令行方式

$ scala
Welcome to Scala 2.12.2 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_131).
Type in expressions for evaluation. Or try :help. scala> println("Hello, Scala!")
Hello, Scala! scala> val x=1
x: Int = 1 scala> println(x)
1 scala> :quit

4.2-sbt方式

获取SBT的帮助信息在命令行下执行“sbt -h”,或者执行“sbt”后输入help并回车。

anliven@DESKTOP-68OFQFP MINGW64 /d/Anliven
$ sbt console
[warn] No sbt.version set in project/build.properties, base directory: D:\Anliven
[info] Set current project to anliven (in build file:/D:/Anliven/)
[info] Starting scala interpreter...
Welcome to Scala 2.12.3 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_131).
Type in expressions for evaluation. Or try :help. scala> println("Hello, Scala!")
Hello, Scala! scala> val x=2
x: Int = 2 scala> println(x)
2 scala> :quit [success] Total time: 41 s, completed 2017-10-25 23:52:39 anliven@DESKTOP-68OFQFP MINGW64 /d/Anliven
$

4.3-IDE方式

  1. Create Scala Project : File--》New--》Scala Project--》Enter a project name.--》Finsh
  2. Create Package : Choose project 》right-click,New--》Scala Worksheet--》Enter a Worksheet name.--》Finsh.
  3. Create code in .sc file: Save .sc file and check the output in the .sc file.
  println("Welcome to the Scala worksheet")       //> Welcome to the Scala worksheet
var x = 1 //> x : Int = 1
println(x) //> 1

5- 在Ubuntu系统安装Scala

5.1-安装JDK

root@Ubuntu16:~# apt-get update
root@Ubuntu16:~#
root@Ubuntu16:~# apt-get install openjdk-8-jre openjdk-8-jdk
root@Ubuntu16:~#
root@Ubuntu16:~# java -version
openjdk version "1.8.0_151"
OpenJDK Runtime Environment (build 1.8.0_151-8u151-b12-0ubuntu0.16.04.2-b12)
OpenJDK 64-Bit Server VM (build 25.151-b12, mixed mode)
root@Ubuntu16:~#

5.2-配置环境变量JAVA_HOME

root@Ubuntu16:~# dpkg -L openjdk-8-jdk | grep '/bin'|head -1
/usr/lib/jvm/java-8-openjdk-amd64/bin
root@Ubuntu16:~# vim ~/.bashrc
root@Ubuntu16:~# source ~/.bashrc
root@Ubuntu16:~# cat ~/.bashrc|head -1
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64
root@Ubuntu16:~#
root@Ubuntu16:~# echo $JAVA_HOME
/usr/lib/jvm/java-8-openjdk-amd64
root@Ubuntu16:~#
root@Ubuntu16:~# $JAVA_HOME/bin/java -version
openjdk version "1.8.0_151"
OpenJDK Runtime Environment (build 1.8.0_151-8u151-b12-0ubuntu0.16.04.2-b12)
OpenJDK 64-Bit Server VM (build 25.151-b12, mixed mode)
root@Ubuntu16:~#
root@Ubuntu16:~# javac -version
javac 1.8.0_151
root@Ubuntu16:~# $JAVA_HOME/bin/javac -version
javac 1.8.0_151
root@Ubuntu16:~#

5.3-安装Scala

wget https://downloads.lightbend.com/scala/2.12.4/scala-2.12.4.tgz
root@Ubuntu16:~# ls -l scala-2.12.4.tgz
-rw-r--r-- 1 root root 19741785 10月 11 16:05 scala-2.12.4.tgz
root@Ubuntu16:~#
root@Ubuntu16:~# tar -zxf scala-2.12.4.tgz -C /usr/local
root@Ubuntu16:~# cd /usr/local
root@Ubuntu16:/usr/local#
root@Ubuntu16:/usr/local# mv ./scala-2.12.4/ ./scala
root@Ubuntu16:/usr/local#
root@Ubuntu16:/usr/local# chown -R root ./scala
root@Ubuntu16:/usr/local#
命令说明:“ tar -zxf scala-2.12.4.tgz -C /usr/local”
  • x : 从 tar 包中把文件提取出来;
  • z : 表示 tar 包是被 gzip 压缩过的,所以解压时需要用gunzip解压;
  • f : 表示后面跟着的是文件;
  • C:表示文件解压后转到指定的目录下

5.4-配置环境变量PATH并运行scala

root@Ubuntu16:/usr/local# vim ~/.bashrc
root@Ubuntu16:/usr/local# source ~/.bashrc
root@Ubuntu16:/usr/local# cat ~/.bashrc |head -1
export PATH=$PATH:/usr/local/scala/bin
root@Ubuntu16:/usr/local#
root@Ubuntu16:/usr/local# scala
Welcome to Scala 2.12.4 (OpenJDK 64-Bit Server VM, Java 1.8.0_151).
Type in expressions for evaluation. Or try :help. scala> :help
All commands can be abbreviated, e.g., :he instead of :help.
:edit <id>|<line> edit history
:help [command] print this summary or command-specific help
:history [num] show the history (optional num is commands to show)
:h? <string> search the history
:imports [name name ...] show import history, identifying sources of names
:implicits [-v] show the implicits in scope
:javap <path|class> disassemble a file or class name
:line <id>|<line> place line(s) at the end of history
:load <path> interpret lines in a file
:paste [-raw] [path] enter paste mode or paste a file
:power enable power user mode
:quit exit the interpreter
:replay [options] reset the repl and replay all previous commands
:require <path> add a jar to the classpath
:reset [options] reset the repl to its initial state, forgetting all session entries
:save <path> save replayable session to a file
:sh <command line> run a shell command (result is implicitly => List[String])
:settings <options> update compiler options, if possible; see reset
:silent disable/enable automatic printing of results
:type [-v] <expr> display the type of an expression without evaluating it
:kind [-v] <type> display the kind of a type. see also :help kind
:warnings show the suppressed warnings from the most recent line which had any scala> :quit
root@Ubuntu16:/usr/local#

5.5-运行示例

root@Ubuntu16:~/testcode# ls -l
总用量 4
-rw-r--r-- 1 root root 96 11月 14 17:10 test.scala
root@Ubuntu16:~/testcode#
root@Ubuntu16:~/testcode# cat test.scala
object HelloWorld {
def main(args: Array[String]){
println("Hello, World!")
}
}
root@Ubuntu16:~/testcode#
root@Ubuntu16:~/testcode# scalac test.scala
root@Ubuntu16:~/testcode# ls -l
总用量 12
-rw-r--r-- 1 root root 602 11月 14 17:11 HelloWorld.class
-rw-r--r-- 1 root root 665 11月 14 17:11 HelloWorld$.class
-rw-r--r-- 1 root root 96 11月 14 17:10 test.scala
root@Ubuntu16:~/testcode#
root@Ubuntu16:~/testcode# scala -classpath . HelloWorld
Hello, World!
root@Ubuntu16:~/testcode# ls -l
总用量 12
-rw-r--r-- 1 root root 602 11月 14 17:11 HelloWorld.class
-rw-r--r-- 1 root root 665 11月 14 17:11 HelloWorld$.class
-rw-r--r-- 1 root root 96 11月 14 17:10 test.scala
root@Ubuntu16:~/testcode#
注意:
  • 关于main()方法的定义,Scala中则必须使用对象方法,而在Java中是用静态方法(public static void main(String[] args))。
  • 对象的命名HelloWorld可以不用和文件名称一致,这点和Java不同。
scalac test.scala  # 编译的时候使用的是Scala文件名称
scala -classpath . HelloWorld # 执行的时候使用的是HelloWorld对象名称

 

 

Scala - 快速学习02 - 搭建开发环境的更多相关文章

  1. perl学习笔记--搭建开发环境

    windows下perl开发环境搭建 perl下载地址:http://www.activestate.com/developer-tools 各个插件的安装方法:(通过代理上网的方法) 方法一:pad ...

  2. android学习一---搭建开发环境

    android基于Java并运行Linux内核上的轻量级操作系统.由于是基于java的,学习起来也不是太难,对java有一定了解并知道一些基本的图形用户界面,入门就很简单了. 一.了解JDK ,SDK ...

  3. Android开发学习——搭建开发环境

    在学校开课学习了android的一些简单的UI组件,布局,四大组件学习了2个,数据存储及网络通信,都是一些简单的概念,入门而已.许多东西需要自己去学习. 学习一下 Android开发环境的搭建,两种方 ...

  4. 【转】Esp8266学习之旅① 搭建开发环境,开始一个“hellow world”串口打印。

    @2019-02-28 [小记] Esp8266学习之旅① 搭建开发环境,开始一个“hellow world”串口打印.

  5. Hadoop学习笔记(4) ——搭建开发环境及编写Hello World

    Hadoop学习笔记(4) ——搭建开发环境及编写Hello World 整个Hadoop是基于Java开发的,所以要开发Hadoop相应的程序就得用JAVA.在linux下开发JAVA还数eclip ...

  6. React + webpack 快速搭建开发环境

    因网上大多React + webpack快速搭建的运行不起来,便自行写了一个.在搭建开发环境的前需安装nodejs,npm. 新建一个工作目录,比如叫reactdome,在reactdome目录中运行 ...

  7. GJM : Unity3D HIAR -【 快速入门 】 二、搭建开发环境

    感谢您的阅读.喜欢的.有用的就请大哥大嫂们高抬贵手"推荐一下"吧!你的精神支持是博主强大的写作动力以及转载收藏动力.欢迎转载! 版权声明:本文原创发表于 [请点击连接前往] ,未经 ...

  8. 一、React Native 搭建开发环境(1)(Mac OS - IOS项目)

    React Native是Facebook推出的一个开发IOS和安卓APP的技术.至于更多的详情,这里不再描述,大家可以自行百度它的定义. 目的: 由于我想在一台电脑上同时开发IOS和Android两 ...

  9. 深入浅出Docker(五):基于Fig搭建开发环境

    概述 在搭建开发环境时,我们都希望搭建过程能够简单,并且一劳永逸,其他的同事可以复用已经搭建好的开发环境以节省开发时间.而在搭建开发环境时,我们经常会被复杂的配置以及重复的下载安装所困扰.在Docke ...

随机推荐

  1. Learning to Promote Saliency Detectors

    Learning to Promote Saliency Detectors 原本放在了思否上, 但是公式支持不好, csdn广告太多, 在博客园/掘金上发一下 https://github.com/ ...

  2. 【转】为什么分布式一定要有Redis?

    发现一篇好文. https://studygolang.com/articles/15064

  3. SELinux入门简介

    操作系统有两类访问控制:自主访问控制(DAC)和强制访问控制(MAC).标准Linux安全是一种DAC,SELinux为Linux增加了一个灵活的和可配置的的MAC. 进程启动时所拥有的权限就是运行此 ...

  4. https及证书

    本文试图以通俗易通的方式介绍Https的工作原理,不纠结具体的术语,不考证严格的流程.我相信弄懂了原理之后,到了具体操作和实现的时候,方向就不会错,然后条条大路通罗马.阅读文本需要提前大致了解对称加密 ...

  5. appium java 滑动(js滑动和swipe滑动)

    最近有一个页面的内容很多,有的元素需要滑动到底部才能看到,所以就研究一下滑动,下面是我学习到的两种滑动方式 一:用js滑动 用js滑动的思路是很简单,首先是先定位到这个元素,定位到之后不做任何操作,然 ...

  6. 树莓派RaspBerry账户初始化设定

    1 第一次安装系统进入后默认账户是pi/raspberry  root账户是默认锁定的 sudo passwd root 设置root账户密码 sudo passwd --unlock root 开启 ...

  7. Python3.7版本unittest框架添加用例的方法

    1.实例demo是用谷歌浏览器在百度首页搜python的动作脚本:     BaiDu_test是指脚本中自己定义的类名,test_get是指你的类中定义的testcase方法. 在if name函数 ...

  8. 深入理解java虚拟机(三)-----类加载机制

    类加载机制jvm把描述类的数据从class文件加载到内存,并对数据进行校验.转换解析和初始化,最终形成可以被jvm直接使用的java类型.在java中,类型的加载.连接和初始化都是在程序运行期间完成的 ...

  9. Codeforces Round #548 (Div. 2) F splay(新坑) + 思维

    https://codeforces.com/contest/1139/problem/F 题意 有m个人,n道菜,每道菜有\(p_i\),\(s_i\),\(b_i\),每个人有\(inc_j\), ...

  10. JAVA Bean和XML之间的相互转换 - XStream简单入门

    JAVA Bean和XML之间的相互转换 - XStream简单入门 背景介绍 XStream的简介 注解简介 应用实例 背景介绍 我们在工作中经常 遇到文件解析为数据或者数据转化为xml文件的情况, ...