學習筆記(21):C++語言基礎視訊教程-3.9 用const實施保護

David Zhuang發表於2020-09-29

立即學習:https://edu.csdn.net/course/play/474/5136?utm_source=blogtoedu

class Time{ const int hour;...}

Time::Time(int h ):hour(h){} //對,在類外初始化

Time::Time(int h ):{hour =h;} //非法,類外賦值,因為const不能賦值

 

相關文章