问题描述
- 对象与对象的引用,求大神指点
- public class T1{
class Child{
int no;
Child nextChild=null;
public Child(int no){
this.no=no;
}}
class CycLink{
Child temp=null;
Child firstChild=null;
public void create(){
for(int i=1;i<=5;i++){
if(i==1){Child ch=new Child(i);
this.temp=ch;
this.firstChild=ch;}else{
Child ch=new Child(i);
temp.nextChild=ch;
temp=ch;
}}
}
}
}
请问一下,里面的temp.nextChild是什么意思,两个不都是对象吗?对象能这样调用吗?
解决方案
这个是类的组合,你可以找一个c++书籍,上面都有详细说明的。也可参考:http://blog.sina.com.cn/s/blog_7289aca90100q250.html
解决方案二:
Child类里有一个字段是Child nextChild,temp是一个Child类型的对象,temp.nextChild就表示调用temp这个Child对象的nextChild字段。
temp是对象,nextChild是一个字段的名称。“对象.xxx”表示调用该对象的xxx属性,包括字段和方法。
你的问题真是文不对题,至于你说的对象和对象的引用。给你举个例子,比如Object o = new Object();这一句中,赋值号右边 new Object()就是new出来的一个Object对象,左边的o就是这个对象的引用。在操作这个对象的时候,我们不用操作这个对象本身,只要用它的引用o来操作就行了。这就好比电视和遥控器的关系,电视就是对象,遥控器就是对象的引用,我们要操作电视,用遥控器就行了,这么说很形象了吧。
时间: 2024-10-31 08:23:42