当前位置:   article > 正文

基于C#的GIS开发中程序报错及其处理方式_system.nullreferenceexception:“object reference no

system.nullreferenceexception:“object reference not set to an instance of a
1.

编译时候可能没有报错,但是调试的时候却会出现
System.NullReferenceException:“Object reference not set to an instance of an object.”
即:
System.NullReferenceException异常:“对象引用未设置为对象的实例。”

在这里插入图片描述
此时我们应考虑,是不是有的类,没有实现继承,没有将接口或者抽象类实例化

2.

语法错误,应输入“,”

在这里插入图片描述

 Console.WriteLine("the result:"  +firstData + secondData);
  • 1

注意“+”的使用

3.

“yanzi”不实现继承的抽象成员“Bird.Bark()”
在这里插入图片描述
产生的原因是:
父类有Bark但是子类没有,所以某子类出现此问题,即使主函数中不调用该函数也需要添加。
添加相对应函数即可解决

4.

错误 CS1597 方法或访问器块后面的分号无效

在这里插入图片描述
原因:接口不能写具体的函数体,即
不能有{}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/563713
推荐阅读