黑马程序员技术交流社区

标题: this.name = name+"....."+count++ [打印本页]

作者: 。。。。。。。    时间: 2013-11-7 08:04
标题: this.name = name+"....."+count++
类1
int count=1;
public void show(String name){          this.name = name+"....."+count++;
}



类2
main{
        类1对象.show("王五");
}

求解:谁帮我读一下这句话,this.name = name我明白,可是这。。。。。

作者: 青年黨衛軍    时间: 2013-11-7 08:46
卤煮可能是经常写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++这个语句编译和运行是没有问题的。下面附上程序一段,以便卤煮参阅:
  1. class T
  2. {
  3.         int count=1;
  4.         [color=Red]private String name;[/color]//卤煮没有定义
  5.         public void show(String name)
  6.         {         
  7.                 this.name = name+"....."+count++;//java.....1
  8.                 this.name = name;//java
  9.                 this.name = this.name+".....";//java.....
  10.                 this.name = this.name+"....."+count++;//java.....2
  11.                 this.name = ""+count++;//3
  12.                 this.name = ""+(count++);//4
  13.                
  14.                 System.out.println(this.name);
  15.                 System.out.println(name);
  16.         }
  17. }


  18. public class This [color=Red]extends T[/color]//此处应该有继承关系
  19. {
  20.         public static void main(String[] args)
  21.         {
  22.                 T t = new T();
  23.                 t.show("java");
  24.                
  25.         }

  26. }
复制代码

作者: 青年黨衛軍    时间: 2013-11-7 08:47
本帖最后由 青年黨衛軍 于 2013-11-7 08:48 编辑

复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2