首页 > 开发 > 综合 > 正文

C#学习笔记(一)-- 入门的困惑

2024-07-21 02:17:26
字体:
来源:转载
供稿:网友
简单的我就不写了,主要写一下c#学习中的要点和难点。1.由helloworld开始先看一段基本上每本c#书里都会讲到的例子,很老土。using system;namespace test{     class class1     {         [stathread]         static void main(string[] args)         {              system.console.writeline("hello,world!");         }     }}先引用一个命名空间system,再定义一个自己的命名空间test,里面有一个类class1,属性[stathread],一个入口的main方法,注意:跟java不一样,main首名母是大写,main必须是static的。不然怎么开始呢?难倒要实例化才行?哈哈,定义为static就是把它放在椎里。这里规举。 2.命名空间再来看看system.console.writeline("hello,world!");输一名语名到控制台。调用system命名空间里的console类的writeline方法。system命名空间是前面我们已经引用了的using system; 你也可以在引用的时候改个名字output,那么在调用的时候就是output.console.writeline("hello,world!");试一试:using output=system; namespace test{     class class1     {         [stathread]         static void main(string[] args)         {              output.console.writeline("hello,world!");         }     }}运行报错:f:/mydoc/visual studio projects/test/class1.cs(7): 找不到类型或命名空间名称“stathread”(是否缺少 using 指令或程序集引用?)嘿嘿,是[stathread]惹的祸。干掉它。再试,搞定。[stathread]是single  thread  apartment单线程套间的意思。是一种线程模型。其它的好像还是mta(多线程套间)、free  thread(自由线程)。这个属性要加在主  main  上。这个属性只在  com  interop  所用,如果全部是  managed  code  则无用。简单的说法:[stathread]指示应用程序的默认线程模型是单线程单元 (sta)。启动线程模型可设置为单线程单元或多线程单元。如果未对其进行设置,则该线程不被初始化。也就是说如果你用的.net framework,并且没有使用com interop,一般不需要这个attribute。 明白了吧。 注意,using指令是用于命名空间的。变化着用一下,也可以为类创建别名:using output=system.console; namespace test{     class class1     {         //[stathread]         static void main(string[] args)         {              output.writeline("hello,world!");         }     }}这样也行。。。 命令空间是可以嵌套的。如:using system; namespace test{     namespace t1     {         class class1         {              static void main(string[] args)              {                   system.console.writeline("t1.class1");              }         }     }      namespace t2     {         class class2         {              static void main(string[] args)              {                   system.console.writeline("t2.class2");              }         }     }}运行,报错。我是故意的(台下:大骗子)。j不要扔砖头啊。不要这么容易就放弃嘛,要执着。看错误f:/mydoc/visual studio projects/test/class1.cs(9): 程序“f:/mydoc/visual studio projects/test/obj/debug/test.exe”定义了不止一个入口点:“test.t1.class1.main(string[])” 因为你的命名空间test里定义了二个main方法,所以呢,不用我说了吧。using system; namespace test{     namespace t1     {         class class1         {              static void main(string[] args)              {                   system.console.writeline("t1.class1");                   system.console.writeline(t2.class2.myfunction());              }         }     }      namespace t2     {         class class2         {              public static string myfunction()              {                   return "t2.class2";              }         }     }} 外部程序引用的时候就是这样:using test.t1;或using test.t2; 入门就这些问题。打开visual studio .net 2003 命令提示键入ildasm,这个程序可以查看编译后的元数据。 网上查一下reflector这个软件。干什么用的。反编译呀。。。。寒。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表