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

002_linuxC++_.h和.c文件

时间:2018-09-22 15:15:28      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:lan   c++   oge   opened   引入   linux   turn   san   14.   

(一)程序修改001_linuxC++之_类的引入

(二)修改成为.h和.c文件
技术分享图片
 1 #include <stdio.h>
 2 #include "person.h"
 3 
 4 int main(int argc,char ** argv)
 5 {
 6     Person per;
 7     per.setName("zhangsan");
 8     per.setAge(200);
 9     per.printInfo();
10     return 0;
11 }
main.cpp
技术分享图片
 1 #include <stdio.h>
 2 
 3 class Person{
 4 private:
 5     char *name;
 6     int age;
 7     char *work;
 8 
 9 public:
10     void setName(char *name);
11     int setAge(int Age);
12     void printInfo(void);
13 };
person.h
技术分享图片
 1 #include <stdio.h>
 2 #include "person.h"
 3 
 4 void Person::setName(char *name)
 5 {
 6     this->name = name;
 7 }
 8 int Person::setAge(int Age)
 9 {
10     if(Age < 0 || Age > 150)
11     {
12         this->age = 0;
13         return -1;
14     }
15     this->age = Age;
16     return 0;
17 }
18 void Person::printInfo(void)
19 {
20     printf("name = %s, age = %d, work = %s\n",name,age,work);
21 }
person.cpp

 

002_linuxC++_.h和.c文件

标签:lan   c++   oge   opened   引入   linux   turn   san   14.   

原文地址:https://www.cnblogs.com/luxiaoguogege/p/9690126.html

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