在 Java 中,如果我们有以下代码:
class myClass{
int timer;
public myClass(int timer){
this.timer = timer;
}
//rest of class
}
所以现在,我想知道这个声明的等价物是什么:
this.timer = timer;
或者我必须在 C++ 中使用不同的变量名?
谢谢,
在 Java 中,如果我们有以下代码:
class myClass{
int timer;
public myClass(int timer){
this.timer = timer;
}
//rest of class
}
所以现在,我想知道这个声明的等价物是什么:
this.timer = timer;
或者我必须在 C++ 中使用不同的变量名?
谢谢,