Unhandled exception. System.NullReferenceException: Object reference not set to an instance of an object.
时间: 2023-12-05 20:36:03 浏览: 198
未将对象引用设置到对象的实例 (System.NullReferenceException)
5星 · 资源好评率100%
Unhandled exception. System.NullReferenceException: Object reference not set to an instance of an object. 这个错误通常发生在访问一个未初始化的对象时。在你的代码中,t是一个Test24类的对象,但是你没有对它进行初始化,所以它的值为null。因此,在调用t.MyFun()时,就会出现NullReferenceException异常。为了解决这个问题,你需要在使用t之前对其进行初始化,例如使用new关键字创建一个Test24类的实例。
阅读全文