Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java プロジェクトに Scala クラスと Java クラスがあり、scala クラスが以下のようなものであるとします。
class Sam { def main(args: Array[String]): Unit = { println("Hello") } }
同じプロジェクトに存在するJavaプログラムのメインメソッドからメインメソッドを呼び出すにはどうすればよいですか