ubuntu下使用IntelliJ idea開發scala

Strangers_bye發表於2018-03-22

ubuntu下使用IntelliJ idea開發scala

需要的軟體

安裝

  • 解壓intelliJ idea,執行./bin/idea.sh即可,會提示進行一些配置等,預設即可
  • 安裝好idea之後,首先需要安裝外掛,選擇從本地安裝並選擇下載的plugin即可,安裝好之後需要重啟一下idea。

建立工程

  • 開啟之後,create project,按照下圖選擇操作

這裡寫圖片描述

  • 開啟之後,工程的檔案結構如下:

這裡寫圖片描述

  • 等待idea下方的操作dump project structure from sbt完成之後,在src/main/scala下新建一個scala script,然後在裡面輸入

    object hello {
      def main(args : Array[String]) : Unit = {
        say_hello()
      }
    
      def say_hello() : Unit = {
        println("hello")
      }
    }
    
  • 儲存之後,右鍵點選這個檔案,然後run即可。

相關文章