scala怎么定义无参构造函数
2 回答
陪伴而非守候
TA贡献1757条经验 获得超8个赞
直接写到类的里面就可以了:
scala> class A {
| //do anything you want
| println("Hi, the construtor invoked here..")
| }
defined class A
scala> val a = new A
Hi, the construtor invoked here..
a: A = A@1339a0dc
scala>
上面的Scala代码基本等价于下面的Java代码:
public class A {
public A() {
//do anything you want
println("Hi, the construtor invoked here..");
}
}
- 2 回答
- 0 关注
- 815 浏览
添加回答
举报
0/150
提交
取消