卤煮可能是经常写this.name = name习惯了吧,觉得this.name = name+"....."+count++不是标准的格式啊,其实this.name只是明确该name变量时类1的成员变量,来接受从类2主函数中传入的任意字符串,name只是一个变量名称,它可以代表任意的字符串,this.name也只类1的一个成员变量的名称,也可以接收任意的字符串。所以this.name = name+"....."+count++就是代表类1的name成员变量接收了传入的一个字符串并连接了一个本类的整形变量(因为整形变量在和字符串连接后自动转型为字符串,卤煮知道哈),所以,this.name = name+"....."+count++这个语句编译和运行是没有问题的。下面附上程序一段,以便卤煮参阅:- class T
- {
- int count=1;
- [color=Red]private String name;[/color]//卤煮没有定义
- public void show(String name)
- {
- this.name = name+"....."+count++;//java.....1
- this.name = name;//java
- this.name = this.name+".....";//java.....
- this.name = this.name+"....."+count++;//java.....2
- this.name = ""+count++;//3
- this.name = ""+(count++);//4
-
- System.out.println(this.name);
- System.out.println(name);
- }
- }
- public class This [color=Red]extends T[/color]//此处应该有继承关系
- {
- public static void main(String[] args)
- {
- T t = new T();
- t.show("java");
-
- }
- }
复制代码 |