热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

C++类的this指针语法练习5

#include<iostream>#include<string>usingnamespacestd;定义一个类Studentclass
#include 
#include 
using namespace std;

// 定义一个类 Student
class Student
{
private:
	string name;
	int    age;
	string address;
	
public:
	// 存
	void setname(string s){	name = s;}
	void setage(int y){age = y;	}
	void setaddress(string add){address = add;}    
	// 取
	string getname(){return name;}
	int getage(){return age;}
	string getaddress(){return address;}
     
	 /*
	 // 返回 指向Student 对象 : 因为this是指针,*this就是当前对象(的值) ?	
	Student Show() 
	{
		cout<<"姓名: "<Show()->Show()->Show();   
	    
	     Student k;
	    // k= x.Show();  //或者 k= x.Show().Show().Show().Show(); 也对.
	     k= x.Show().Show().Show().Show(); 
// --------------------
	return 0;
}


// --

 

问题是 返回对象好,还是返回对象的引用好?

 
  // 返回 指向Student 对象 : 因为this是指针,*this就是当前对象(的值) ? 
 Student Show()
 {
  cout<<"姓名: "<   return *this; // 这里不是this,而是 *this
 }    

    // 或者 Student & Show() 就是返回对象的引用 也对.   是返回引用好?还是上面的返回对象本身好?
 
    Student & Show()
    {
     cout<<"姓名: "<      return *this; // 这里不是this,而是 *this
    }

 


推荐阅读
author-avatar
u02022042
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有