關於《C 程式設計第4版》一書中發現的錯誤

2021-04-14 06:09:11 字數 641 閱讀 9028

書名:《programming c# 中文版(第4版)》

#1、懷疑出錯位置:第5章:繼承與多型   112頁 「呼叫基類構造方法」部分內容

懷疑內容:

在示例5-1中,新的類 listbox 派生之 control ,有自己的構造方法,引數為三個整數。

請問:是三個整數嗎? 下面是**內容:

public listbox(

int thetop ,

int thgleft ,

string thecontents):

base( thetop , theleft )//呼叫基類方法

應該為兩個整數和乙個字串吧?

#2、肯定出錯位置:第8章:介面     168頁  下方示例**內容

出錯內容:

略 istorable isdoc=thedoc;

isdoc.read();!=null)

italk itdoc=thedoc;

itdoc.read();

istorable isdoc = thedoc as istorable;

if (isdoc != null)

italk itdoc = thedoc as italk;

if (itdoc != null)

C語言程式設計(第3版)習題4

4.1 分析並寫出下面程式的執行結果。3 假設程式執行時輸入123456.include main 4.2 分析下面程式,請指出錯誤的原因和程式錯在 並改正錯誤。include main 改 include main 4.3 填空題。1 要使下面的程式螢幕顯示1,2,34,則從鍵盤輸入的資料格式應為...

C 程式設計 第2版 課後習題答案 第4章

c 程式設計 第2版 課後習題答案 第4章 控制結構 view code 1 設計乙個程式,輸入實型變數x和y,若x y,則輸出 x y 若x2 include 3 include 4 void main 514 15 include 16 include 17 include 18 void ma...

紅皮書c 高階程式設計 第6版 第4章 繼承

4.2實現繼承 1.虛方法 把基類函式宣告為virtual,該函式可以在派生類中重寫,也可以把屬性宣告為virtual 2.隱藏方法 在派生類中宣告的方法和基類中同名,且該基類中方法為宣告virtual,派生類中方法未宣告override 派生類方法會隱藏基類方法,應用new關鍵字宣告派生類方法,隱...