學習
1. a beginners hello world
public class helloworld
}2. slightly improved version
using system;
public class helloworld
}3. ***mand line arguments
using system;
public class helloworld
}4. from constructor
using system;
public class helloworld
public static void main()
}5. more oo
using system;
public class helloworld
public static void main()
}6. from another class
using system;
public class helloworld
}public class helloworldhelperclass
}7. inheritance
abstract class helloworldbase
class helloworld : helloworldbase
}class helloworldimp
}8. static constructor
using system;
public class helloworld
void writehelloworld()
public static void main()
}9. exception handling
using system;
namespace hellolibrary}}
}using system;
using hellolibrary;
public static void main(string args)}}
11. using property
using system;
public class helloworld
}public static void main()
}12. using delegates
using system;
class helloworld
static void main()
}13. using attributes
#define debugging
using system;
using system.diagnostics;
public class helloworld : attribute
public static void main()
}14. using inte***ces
using system;
inte***ce ihelloworld
public class helloworld : ihelloworld
public static void main()
}15. dynamic hello world
using system;
using system.reflection;
namespace helloworldns
public static void main(string args)
;object nobj = activator.createinstance(hw,
nctorparams);
// invoking a method
object nmthdparams = new object {};
string strhelloworld = (string) hw.invokemember(
"writehelloworld", bindingflags.default |
bindingflags.invokemethod, null,
nobj, nmthdparams);
console.writeline(strhelloworld);}}
}16. unsafe hello world
using system;
public class helloworld
;hw.writehelloworld(chrhelloworld);}}
17. using interopservices
using system;
using system.runtime.interopservices;
class class1
}
用Delphi編寫安裝程式 1
用delphi編寫安裝程式 1 當你完成一個應用軟體的開發後,那麼你還需要為該軟體做一個規範化的安裝程式,這是程式設計的最後一步,同時也是很重要的一步,因為執行安裝程式往往是使用者做的第一步操作。很多報刊文章介紹了許多如何利用installshield等工具軟體來製作安裝程式的方法,這種辦法可以很快...
用C 編寫strcpy函式
已知strcpy函式的原型是 char strcpy char strdest,const char strsrc 1.不呼叫庫函式,實現strcpy函式。2.解釋為什麼要返回char 解說 1.strcpy的實現 char strcpy char strdest,const char strsrc...
用C 編寫ActiveX控制元件
選自 紅馬天下 的blog,做了適當修改將上下兩章合併 http blogs.homer 前些日子做一個web專案,必須自己編寫一個activex控制元件。如今的activex控制元件大多是使用vb c 來開發的,而我對他們並不熟悉,因此考慮使用熟悉的c 編寫activex控制元件。首先,建立一個w...
用c編寫cgi程式
cgi的工作原理介紹 cgi common gateway inte ce 是一個web伺服器提供資訊服務的標準介面,通過這樣一個介面,web伺服器能夠執行程式,並將程式輸出的資訊返回給瀏覽器。因為在web網上的資料都是靜態的,通過cgi程式能夠動態的處理瀏覽者的請求,如儲存使用者輸入的資訊,根據使...
用C 編寫單向連結串列
list.h ifndef list h define list h include include define type int using namespace std class node class list list void 頭新增 void head add type data 尾新增...