博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
constructor C++ example
阅读量:5246 次
发布时间:2019-06-14

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

The constructor for this class could be defined, as usual, as:
 
Rectangle::Rectangle (int x, int y) { width=x; height=y; }
 
But it could also be defined using
member initialization as:
 
Rectangle::Rectangle (int x, int y) : width(x) { height=y; }
 
Or even:
 
Rectangle::Rectangle (int x, int y) : width(x), height(y) { }
 

转载于:https://www.cnblogs.com/vigorz/p/10499130.html

你可能感兴趣的文章
xib文件加载后设置frame无效问题
查看>>
编程算法 - 左旋转字符串 代码(C)
查看>>
IOS解析XML
查看>>
Python3多线程爬取meizitu的图片
查看>>
树状数组及其他特别简单的扩展
查看>>
zookeeper适用场景:分布式锁实现
查看>>
110104_LC-Display(液晶显示屏)
查看>>
httpd_Vhosts文件的配置
查看>>
php学习笔记
查看>>
普通求素数和线性筛素数
查看>>
React Router 4.0 基本使用
查看>>
PHP截取中英文混合字符
查看>>
【洛谷P1816 忠诚】线段树
查看>>
电子眼抓拍大解密
查看>>
poj 1331 Multiply
查看>>
tomcat7的数据库连接池tomcatjdbc的25个优势
查看>>
Html 小插件5 百度搜索代码2
查看>>
P1107 最大整数
查看>>
多进程与多线程的区别
查看>>
Ubuntu(虚拟机)下安装Qt5.5.1
查看>>