区别
静态类与非静态类的重要区别在于静态类不能实例化,也就是说,不能使用 new 关键字创建静态类类型的变量。在声明一个类时使用static关键字,具有两个方面的意义:首先,它防止程序员写代码来实例化该静态类;其次,它防止在类的内部声明任何实例字段或方法。
特点
1、静态类中只能包含 静态成员(构造方法、字段、属性),在静态类中无法实例化
下面这些是测试
1.1 静态类中声明静态变量
错误演示
实例成员就是需要实例化以后才能用的(我这个类要New才能用)
我们给这个变量加上static以后就可以用了,变成静态变量了
1.2 静态类中声明静态方法
我们在静态类中搞一个带参函数
错误演示
加个static
我们看下如何输出静态方法和静态变量,把上面两个输出一下
StaticClass1.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StatacTest
{
public static class StaticClass1
{
public static string name = "lucky";
public static int returnAge(int age)
{
return age;
}
}
}
Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StatacTest
{
class Program
{
static void Main(string[] args)
{
//输出静态类中的静态变量和静态方法
Console.WriteLine(StaticClass1.returnAge(6));
Console.WriteLine(StaticClass1.name);
}
}
}
2、在非静态类中可以声明静态类成员
NoStaticClass.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StatacTest
{
class NoStaticClass
{
public static char sex='男';
public static int PrintTel(int tel)
{
return tel;
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StatacTest
{
class Program
{
static void Main(string[] args)
{
//输出非静态类中的静态变量和静态方法
Console.WriteLine(NoStaticClass.sex);
Console.WriteLine(NoStaticClass.PrintTel(66666666));
}
}
}
我们把NoStaticClass.cs里面的static去掉
在输出脚本上马上就报错了
需要实例化以后才能搞