摘要:
pln函数 用 类似C++的 teplate形式 接受任意类型参数 ``` class Euphonium{ String nameString; public Euphonium() {} public Euphonium(String nameString) { this.nameString 阅读全文
摘要:
##### this this 是自身的一个对象,代表对象本身,可以理解为:指向对象本身的一个指针。 1.普通的直接引用 this相当于是指向当前对象本身 2.形参与成员名字重名 用this来区分 ``` class A{ String name; public A(String name){ th 阅读全文