类Test代码如下:class Test{string name;int age; Test(String num){ name=num; } } 当执行Test test=new Test(0后,aqe的值是:
时间: 2024-02-13 16:06:29 浏览: 63
测试代码
这段代码有一些错误,应该是这样的:
```
class Test {
String name;
int age;
Test(String num) {
name = num;
}
}
```
在这种情况下,当执行`Test test = new Test("0");`时,`test`对象的`name`属性将被设置为字符串"0",而`age`属性将保持默认值0。因为在构造函数中只为`name`属性赋值了,而没有为`age`属性赋值。
阅读全文