博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1-23 类
阅读量:5239 次
发布时间:2019-06-14

本文共 1812 字,大约阅读时间需要 6 分钟。

类的学习

#include
#include
using namespace std;class Cperson{public: string Name; int *p;//构造函数与类同名,可以有参数也可以没有参数//无返回值//在创建对象时一定会调用的函数 //类里面默认一个构造函数,无参数 //构造函数的作用是给成员变量赋值 Cperson() { cout << "Cperson()" << endl; p = new int[3]; } //析构函数,反向的构造函数 //在对象被回收时,一定会被调用的函数 //在一个类里只有一个 //省略了回收空间的操作,防止忘记 ~Cperson() { delete [ ] p; cout << "~Cperson()" << endl; }private: int m_BankPassword;public: int GetPassWord() { return m_BankPassword; }};int main(){ Cperson ps; ps.GetPassWord(); return 0;}

练习1

#include
using namespace std;class CStudent{public: int id; int m_Chinese; int m_Math; CStudent(int ID, int a, int b) { id = ID; m_Chinese = a; m_Math = b; } int Average() { return (m_Chinese + m_Math) / 2; } bool IsPass() { if (m_Chinese < 60 || m_Math < 60) { return false; } return true; }};int main(){ int id; int m_ch; int m_ma; cin >> id >> m_ch >> m_ma; CStudent st1(id,m_ch,m_ma); cout << st1.Average() << endl; if (st1.IsPass()) { cout << "pass" << endl; } else { cout << "not pass" << endl; } return 0;}

练习2

#include
using namespace std;class Timer{public: int h; int m; int s; void GetTime(int hour,int minute,int second) { h = hour; m = minute; s = second; } void ShowTime() { if (h < 24 || h >= 0 || m < 60 || m >= 0 || s < 60 || s >= 0) { cout << h << ":" << m << ":" << s << endl; } }};int main(){ Timer st; st.GetTime(23, 34, 56); st.ShowTime();}

转载于:https://www.cnblogs.com/NoisyHu/p/10314772.html

你可能感兴趣的文章
文件语音识别Google语音识别学习札记 - Windows PC机上测试语音识别Strut2教程-java教程...
查看>>
μC/OS-III---I笔记13---中断管理
查看>>
:after,:before,content
查看>>
FTTB FTTC FTTH FTTO FSA
查看>>
OpenAI Gym
查看>>
stap-prep 需要安装那些内核符号
查看>>
网易杭研后台技术中心的博客 -MYSQL :OOM
查看>>
第二章 数据通信的基础知识 计算机网络笔记 学堂在线 2.1 数据传输系统 2.2 信号...
查看>>
如何解决click事件的重复触发问题
查看>>
2016寒假自学笔记
查看>>
VC++2012编程演练数据结构《21》二叉排序树
查看>>
ZOJ 3537 Cake(凸包+区间DP)
查看>>
Java中常见的集合类比较
查看>>
python - 内置函数
查看>>
HTML 表单 / HTML5 表单元素datalist
查看>>
List<>集合
查看>>
python 全栈开发,Day71(模型层-单表操作)
查看>>
javascript函数编程与currying
查看>>
淘宝首页上的一个设计
查看>>
回忆(四):通过反射获得私有构造实例化得到对象
查看>>