Non-static method requires a target异常,一般来说都是在
实体.xx字段时,实体为null时出现,你可以检查下代码中涉及到的实体是否为null,这地方编译时不会出错,运行时会有错;
public class TableA
{
public string Id { get, set }
}
public class TableB
{
public string Id { get, set }
public string TableAId { get, set }
}
TableA tableA = null;
TableB tableB = new TableB;
tableB.TableAId = tableA.Id; //此处就会报该异常;
解决办法,在使用类似以上的代码时(即:实体.xx字段)时,记得一定要让tableA是个不为null的实体。
public class TableA
{
public string Id { get, set }
}
public class TableB
{
public string Id { get, set }
public string TableAId { get, set }
}
TableA tableA = new TableA;
TableB tableB = new TableB;
tableB.TableAId = tableA.Id; //这样就不会报该异常了;
本文介绍了一种常见的编程异常Non-staticmethodrequiresatarget,并提供了具体的代码示例来说明如何避免此错误。通过确保实体对象不为null,可以有效防止运行时出现此类异常。
1万+

被折叠的 条评论
为什么被折叠?



