gpt4 book ai didi

C++类基本语法实例分析

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 26 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章C++类基本语法实例分析由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

类是C++程序设计非常重要的概念,本文即以实例形式说明了类的常见用法。具体如下:

本测试代码主要包括以下内容:

(1)如何使用构造函数; (2)默认构造函数; (3)对象间赋值; (4)const使用语法; (5)定义类常量: 一种方法是用enum,另一种方法是使用static.

实例代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#include <iostream>
 
using namespace std;
 
enum sexType
{
   MAN,
   WOMAN
};
 
class Human
{
   //the default is private
   private :
     string name;
     sexType sex;
     int age;
 
     //(5) 定义类常量: 一种方法是用enum,另一种方法是使用static
     enum {LEN=1};
     static const int LEN2 = 3;
 
   public :
     //如果类定义中没有提供任何构造函数,则编译器提供默认构造函数。但,如果类中定义了构造函数,那么编写者必须同时提供一个默认构造函数。
     //有两种方法提供默认构造函数:
     //(1) 定义一个没有参数的构造函数:Human();
     //(2) 为非默认构造函数的参数提供默认值: Human(string m_name="no name", int m_age=0, sexType m_sex=MAN);
     //两种定义方式只能二选一
     Human();
     Human(string m_name, int m_age, sexType m_sex);
     Human( int m_age);
     ~Human();
 
     //定义在类声明中的方法为内联方法。也可以使用inline关键字将函数定义在类声明外部。
     void show() const //const加在函数名后面表示该函数不会修改该类的数据成员。
     {
       cout<< "This is " <<name<< ", sex: " <<sex<< ", " <<age<< " Years old." <<endl;
     }
};
 
Human::Human()
{
   cout<< "default construct function" <<endl;
}
 
Human::Human(string m_name, int m_age, sexType m_sex)
{
   cout<< "construct function: " <<m_name<<endl;
   name = m_name;
   age = m_age;
   sex = m_sex;
}
 
Human::Human( int m_age)
{
   age = m_age;
}
 
Human::~Human()
{
   cout<< "destroy function: " <<name<<endl;
}
 
int main()
{
   cout << "This is test code of C++ class: " << endl;
   {
     //(1) use of construct function
     Human jack = Human( "Jack" , 30, MAN); //显示调用
     Human jerry( "Jerry" , 26, MAN);    //隐式调用
     Human *pTom = new Human( "Tom" , 10, MAN); //New调用
     //当构造函数只有一个参数时,可以直接用赋值语句赋值。只有一个参数的构造函数将会被自动调用
     Human marry = 11; //赋值调用
 
     //(2) defaults construct function
     Human Lucy;
 
     //(3) 赋值对象
     Human James;
     James = Human( "James" , 28, MAN); //创建一个临时对象James,copy一份儿该对象赋值给James变量。紧接着该临时对象会被销毁。
 
     //(4) const
     const Human Thomas( "Thomas" , 29, MAN);
     Thomas.show(); //The show method must define with 'const'
   }
   return 0;
}

程序运行结果为:

C++类基本语法实例分析

最后此篇关于C++类基本语法实例分析的文章就讲到这里了,如果你想了解更多关于C++类基本语法实例分析的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com