为吸气剂使用“ this”的最佳解释

时间:2019-05-28 07:27:48

标签: java

使用此方法返回可变客户之间有什么区别。

public class Customer
{
    private String customer;

    public getCustomer(){
      return this.customer;
    }
}

public class Customer
{
    private String customer;

    public getCustomer(){
      return customer;
    }
 }

0 个答案:

没有答案