码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 类的两种定义方式

时间:2017-05-05 16:17:58      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:div   out   creat   set   pre   print   c++ 类   void   with   

类内定义

class Teacher
{
private:
	string _name;
	int _age;
public:
	Teacher()
	{
		printf("create techer \n");
	}
	Teacher(string name)
	{
		_name = name;
		printf("create techer with name \n");
	}

	void SetName(string name)
	{
		_name = name;
	}
	string GetName()
	{
		return _name;
	}
	void Say()
	{
		string des = "I‘m Teacher and my name is ";
		des += _name;
		cout<< des<< endl;
		//printf(des);
	}
};

  

 

类外定义

namespaceDemo.h

namespace MyPrintSpace
{
    void Say();
}

namespaceDemo.cpp
#include "namespaceDemo.h"
//为了调用带有命名空间的函数或变量,需要在前面加上命名空间的名称,
void MyPrintSpace::Say()
{
	cout<<"MyPrintSpace say()"<<endl;
}

  

C++ 类的两种定义方式

标签:div   out   creat   set   pre   print   c++ 类   void   with   

原文地址:http://www.cnblogs.com/lizhenlin/p/6813488.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!