这是比较排序方法,有一个问题就是如果穿进来的值是空的话想把它赋值为0。怎样写比较好点?
认证0级讲师
這樣?
ApplyDate s2 = o2 != null ? (ApplyDate)o2 : new ApplyDate();
這樣?