第四章 其他

2021-07-25 16:00:14 字數 770 閱讀 5774

sizeof和strlen()

區別sizeof以位元組為單位給出資料的大小,strlen()函式以字元為單位給出字串的長度。使用strlen()函式要加#include標頭檔案。sizeof計算字元時會將標誌字串結束的不可見的空字元計算在內。

定義符號常量

方法一:#define name value

優點:乙個名字比數字告訴的資訊更多;

若要改變常量的值,只需改變符號常量的定義。

用法:1,培養用大寫常量的習慣;

2,可用於定義字元和字串常量。

方法二:const name=value

*修飾符

/*29.c--使用可變寬度的輸出字段*/

#include

int main()

執行結果:what field width? 6

the number is:   256:

now enter a width and a precision:

8 3weight = 242.500

如果事先不想指定字段寬度,可用*代替數字,不過要用引數來告訴函式的字段寬度。

/*30.c--跳過輸入的頭兩個數*/

#include

int main()

執行結果:please enter three integers:

1234 767 234

the last integer was 234

在函式scanf()中,當*放在%和說明符字母之間時,它使函式跳過相應的輸入專案。

第四章 繼承

一 為什麼要繼承 在物件導向中我們將具有很多重複內容的類中的內容提取出來,寫成乙個單獨的類 其他類只需要繼承就能取得這些功能,同時可以在自己類中寫入獨特的自定義方法 二 繼承語法 inte ce circle nsobject 繼承是在介面中定義的 冒號後的類名是要整合的類,nsobject 是co...

第四章 物件

三個特性 身份 型別 值 每個物件都有唯一的身份來標識自己,使用內建函式id 得到。例子 usr bin env python coding utf 8 a 32 print a b a print id a id b 結果 d python27 python.exe e workp python ...

第四章上機

上機3 not in 關鍵字 使用not in 關鍵字的子查詢來查詢為參加 的課程最近一次考試的再讀學生名單 select studentname from student as stu,result as res where stu.studentno res.studentno and exam...