[學習筆記] windows scala helloworld例子詳解: 在操作系統中,我們的Test3.scala會生成Test3.class,然後class文件被虛擬機載入並執行, 這一點和java是一樣的。 以object關鍵字修飾一個類名,這種語法叫做孤立對象,這個對象是單例的。 相當於將單 ...
[學習筆記]
windows scala helloworld例子詳解: 在操作系統中,我們的Test3.scala會生成Test3.class,然後class文件被虛擬機載入並執行, 這一點和java是一樣的。
以object關鍵字修飾一個類名,這種語法叫做孤立對象,這個對象是單例的。 相當於將單例類和單例對象同時定義。相當於java中的單例,即在記憶體中只會存在一個Test3實例。創建一個Scala Object,它相當於java的static, 不要用Scala-class去建工程,不然就不能建main函數了。
2 方法聲明以def開頭, 然後是方法名, 參數列表, 返回值, 等號, 方法體 。如下:
def method1(x : Int) : Int = {
x += 1
}
如果沒有返回值, 可以省略等號, 直接寫方法體。(就像咱們的例子)
3.Scala語法必備基礎:
我們這章只是入門,所以只給出一點scala語法的必備知識,否則連本章之後的RDD都無法展開講述。真正的scala語法詳解會放在將來的章節。
)mkString()方法的使用:
馬克-to-win @ 馬克java社區:防盜版實名手機尾號:73203
package com
object Test
{
def main(args: Array[String]): Unit = {
var name : String = "Hello mark-to-win"
var tmp=""
/*def mkString(sep: String): String
Displays all elements of this string in a string using a separator string.
*/
tmp=name.mkString(" ")
println("name.mkString(\" \") is "+tmp)
tmp=name.mkString(",")
println("name.mkString(\",\") is "+tmp)
/*def mkString(start: String, sep: String, end: String): String
Displays all elements of this string in a string using start, end, and separator strings.
* */
文章轉載自原文:https://blog.csdn.net/qq_44596980/article/details/93217734