codecamp

C++ 复合值

到目前为止,我们使用的大多数数据类型都表示单个值,如整型数,浮点数,布尔值。 从这种意义上说,apstring不同于那些数据类型,它们由更小的部件组成:字符。因此,apstring是复合类型的一个例子。

根据需要,我们可能想把一个复合类型当作单个的事物(或对象),也可能想访问它的某部分(或实例变量)。这两种理解是有意义的。

对于用户创建自己的复合值,这也是很有用的。 C++为此提供了两种机制:结构和类。 我们从结构开始学习,并在第14章介绍类(它们之间没有太大的差别)。

C++ 术语表
C++ Point对象
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }