面向對象
文章平均质量分 72
面向對象
DoubleQ666
这个作者很懒,什么都没留下…
展开
-
C++文件流
【代码】C++文件流。原创 2022-10-27 10:57:15 · 329 阅读 · 0 评论 -
C++常量、常對象、常函數辨析
答案:B解析:規則:首先將const和旁邊的一個東西連起來(默認作用於左邊的東西,如果左邊沒有,則作用於右邊的東西),然後再從右往左讀常量必須要初始化,但變量可以不用初始化例如:因為const只有右邊有東西,所以將const和int連起來,即(const int)*故從右往左讀為a pointer to a constant integer即對象為指向一個常量的指針換言之,指針可以修改指向的地址,但不能修改指向地址的值。例如以下程序但是不能用 這樣的語句修改指向地址的值,這種寫法會報錯但是直接修改指向原创 2022-06-22 22:28:11 · 638 阅读 · 0 评论 -
面向對象作業(繼承、多態、虛函數、純虛函數、抽象類)
2. Define an abstract class Shape, including a pure virtual function perimeter, whose function is to calculate the perimeter of the graph. There are three classes derived from Shape:Triangle, the data member includes the length of three sides (a, b, c);原创 2022-06-23 20:05:56 · 146 阅读 · 0 评论 -
面向對象作業(靜態函數、靜態成員)
靜態函數、靜態變量原创 2022-07-01 16:55:56 · 103 阅读 · 0 评论