-2

就我现在而言,我有这个:

类车辆{

int 注册号;

现在我需要为 registrationNumber 创建一个构造函数。我该怎么做呢?(我见过一些this.= this.做什么?

4

1 回答 1

0

this关键字返回对当前对象的引用。

class Vehicle{

    int registrationNumber;

    Vehicle(int registrationNumber){
        this.registrationNumber = registrationNumber;
    }

}
于 2013-10-06T10:51:34.533 回答