~
作为前缀,如下所示:
class Car
{
~Car() // 析构函数
{
}
}
using System; namespace task.lmcjl.com { class Demo { static void Main(string[] args) { Student stu1 = new Student(); Student stu2 = new Student(); } } public class Student { public Student(){ Console.WriteLine("类中的构造函数"); } ~Student(){ Console.WriteLine("类中的析构函数"); } } }运行结果如下:
类中的构造函数
类中的构造函数
类中的析构函数
类中的析构函数
注意:析构函数不能对外公开,所以我们不能在析构函数上应用任何访问权限修饰符。
本文链接:http://task.lmcjl.com/news/15441.html