摘要
構造函數與析構函數是一個類中看似較為簡單的兩類函數
一.構造函數與析構函數的原理
作為比C更先進的語言
根據經驗
二.構造函數在C#中的運用
構造函數的名字不能隨便起
class TestClass
{
public TestClass(): base() {} // 由CLR提供
}
下面列舉了幾種類型的構造函數
class TestClass
{
public TestClass(): base() {}
}
上面已介紹
實例構造函數是實現對類中實例進行初始化的方法成員
using System;
class Point
{
public double x
public Point()
{
this
this
}
public Point(double x
{
this
this
}
…
}
class Test
{
static void Main()
{
Point a = new Point();
Point b = new Point(
…
}
}
From:http://tw.wingwit.com/Article/program/net/201311/14889.html