C 課後小試5

2022-08-23 19:54:13 字數 1062 閱讀 2110

1.string相關函式

我分別嘗試了compare  substring split函式,如上圖示。

compare函式會比較輸入是兩個string,然後返回乙個int值顯示結果。

substring可以讀取string裡的一部分,(開始索引,索引個數)。

split可以對string按照給出的條件分割。

2.正規表示式

由元字元和字面值組成,用來更方便的管理字串。

對於該部分大學習我參考了

3.ecpection

expection是來處理可預料但不能避免的問題。

如果在相應方法中找到處理exception的**段,

就會呼叫它對exception進行處理。

如果沒有找到會展開呼叫棧,到上一層找相應的exception處理程式

public class test

public static void main()

console.writeline("enter main...");

test t = new test();

t.func1();

console.writeline("exit main...");

public void func1()

console.writeline("enter func1...");

func2();

console.writeline("exit func1...");

public void func2()

console.writeline("enter func2...");

console.writeline("exit func2...");

output:

enter main...

enter func1...

enter func2...

值得注意的是,如果有多個exception,並且之間有派生關係,一定要按照從特殊到一般d順序排列exception.

C語言程式設計課後習題 第5章

從鍵盤任意輸入乙個實數,不使用計算絕對值函式程式設計計算並輸出該實數的絕對值 include include intmain printf f n x return0 從鍵盤任意輸入乙個整數,程式設計判斷它的奇偶性 include include intmain else return0 在例3.8...

郵件傳送 c 小試

1 新增參考 cdo 在com中microsoft cdo for windows 2000 libray下 2 設定email server 例子為126的email傳送。其它的以實際情況修改 第一種方法 cdo.messageclass msg new messageclass cdo.conf...

C 課後題 遞迴

include include using namespace std void reverstnumber int num cout endl int main int argc,char argv include include using namespace std void reverstn...