01、下列不屬于面向?qū)ο笕筇卣鞯氖牵ǎ?/p>
02、關(guān)于readonly 和const 關(guān)鍵詞下列說法錯誤的是() - (A)可以在構(gòu)造函數(shù)中對
readonly 類型的常量進(jìn)行賦值。 - (B)在聲明
const 類型的常量時,必須為其賦值。 - (C)
readonly 類型的常量,可以通過類名直接使用。 - (D)
const 類型的常量,不能通過對象的方式來使用。
03、下列有關(guān)編譯時多態(tài)錯誤的說法是() - (A)操作符重載可是使用
operator 關(guān)鍵字來實現(xiàn) - (B)類中函數(shù)的重載必須有不同的參數(shù)列表
- (D)類中函數(shù)的重載必須有不同的返回值類型
04、運行下列代碼,變量dog 存儲的值是()? class Animal { public void Eat() { Console.WriteLine("Animal Eat."); } } class Dog : Animal { public void Run() { Console.WriteLine("Dog Run."); } } class Bird : Animal { public void Fly() { Console.WriteLine("Bird Fly."); } } class Program { static void Main(string[] args) { Animal animal = new Bird(); Dog dog = animal as Dog; } }
05、設(shè)是描述問題規(guī)模的非負(fù)整數(shù),下面的程序片段的時間復(fù)雜度是() int x = 2; while (x < n / 2) x = x * 2;
|