我們看下面的例子
using System;
namespace gosoa.com.cn
{
public class test
{
static test()
{
Console.WriteLine("www.gosoa.com.cn");
}
public test ()
{
}
static void Main()
{
test classOne=new test();
}
}
}
該程序運行的結果是 www.gosoa.com.cn 在類的對象創建的時候,靜態構造函數已經運行了。
我們再來看一個例子
using System;
namespace gosoa.com.cn
{
public class test
{
private string domain;
private string url;
public test (string dom,string url)
{
this.domain=dom;
this.url=url;
}
public test(string dom)
{
this.domain=dom;
this.url="gosoa.com.cn";
}
static void Main()
{
test classOne=new test("gosoa");
Console.WriteLine(classOne.url);
}
}
}