我正在调用一个很长的构造函数。然而,长字段设置为 -1:
LogCat:“将包的 ID 设置为 -29270339915449391104。getID() 现在返回 -1”
我不知道为什么。如果你投入很长时间,那么应该没有任何转换问题?我错过了什么?
private long ID;
public AFileOrPackView(Context context, long ID) {
super(context);
this.ID = ID;
Log.d("asd", "set the pack's id to " + ID + ". getID() now returns " + this.getId());
}
public Long getID() {
return this.ID;
}