我是靠谱客的博主 灵巧黑猫,最近开发中收集的这篇文章主要介绍c++类的组织形式,书写规范,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

c++类的组织形式

简单示意一下类的组织形式及编写规范:
在这里插入图片描述
以student类进行演示
类的定义代码会放在一个.h头文件中。头文件名跟类名相同,studengt.h。
类的具体实现代码,放在一个.cpp文件中,student.cpp。

code

student.h

#include <iostream>
class student{
public:

	int number;
	char name[100];

public:

	void func();
};

student.cpp

#include <iostream>
#include "student.h"

void student::func() 
{
		number++;
		return;
}

源.cpp

#include <iostream>
#include "student.h"

using namespace std;

 
//void func(student &stu) 
//{
//	stu.number = 2000;
//	strcpy_s(stu.name,sizeof(stu.name),"who");
//	return;
//}

//void func(student  *ptstu)
//{
//	ptstu->number = 2000;
//	strcpy_s(ptstu->name, sizeof(ptstu->name), "who");
//	return;
//}

int main()
{
	student student1;
	student1.number = 1001;
	strcpy_s(student1.name, sizeof(student1.name), "liuyu");

	cout << student1.number << endl;
	cout << student1.name << endl;

	/*func(&student1);*/
	student1.func();
	cout << student1.number << endl;
	cout << student1.name << endl;

	return 0;
}

结果:

在这里插入图片描述

最后

以上就是灵巧黑猫为你收集整理的c++类的组织形式,书写规范的全部内容,希望文章能够帮你解决c++类的组织形式,书写规范所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部