博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
初始化列表
阅读量:5045 次
发布时间:2019-06-12

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

初始化列表

1 // 2 //  Box.hpp 3 //  cplus 4 // 5 //  Created by wanwan on 17/2/7. 6 //  Copyright © 2017年 yuge. All rights reserved. 7 // 8  9 #ifndef Box_hpp10 #define Box_hpp11 12 #include 
13 14 class Box15 {16 public:17 double x;18 double y;19 double z;20 21 Box(double x,double y,double z);22 };23 24 #endif /* Box_hpp */
1 // 2 //  Box.cpp 3 //  cplus 4 // 5 //  Created by wanwan on 17/2/7. 6 //  Copyright © 2017年 yuge. All rights reserved. 7 // 8  9 #include "Box.hpp"10 #include 
11 using namespace std;12 13 Box::Box(double x,double y,double z):x(x),y(y),z(z)14 {15 cout<< "x,y,z = "<
<<","<
<<","<
<
1 // 2 //  main.cpp 3 //  cplus 4 // 5 //  Created by wanwan on 17/2/7. 6 //  Copyright © 2017年 yuge. All rights reserved. 7 // 8  9 #include 
10 #include "Box.hpp"11 using namespace std;12 13 int main(int argc, const char * argv[]) {14 15 Box box1(10,20,30);16 return 0;17 }18 19 /*20 结果:21 x,y,z = 10,20,3022 */

转载于:https://www.cnblogs.com/yuge790615/p/6374221.html

你可能感兴趣的文章
第四天 selenium的安装及使用
查看>>
关于js的设计模式(简单工厂模式,构造函数模式,原型模式,混合模式,动态模式)...
查看>>
KMPnext数组循环节理解 HDU1358
查看>>
android调试debug快捷键
查看>>
【读书笔记】《HTTP权威指南》:Web Hosting
查看>>
Inoodb 存储引擎
查看>>
数据结构之查找算法总结笔记
查看>>
Linux内核OOM机制的详细分析
查看>>
Android TextView加上阴影效果
查看>>
Requests库的基本使用
查看>>
C#:System.Array简单使用
查看>>
C#inSSIDer强大的wifi无线热点信号扫描器源码
查看>>
「Foundation」集合
查看>>
算法时间复杂度
查看>>
二叉树的遍历 - 数据结构和算法46
查看>>
类模板 - C++快速入门45
查看>>
centos7 搭建vsftp服务器
查看>>
RijndaelManaged 加密
查看>>
Android 音量调节
查看>>
HTML&CSS基础学习笔记1.28-给网页添加一个css样式
查看>>