Convert.ToInt32(myCommand.ExecuteScalar()); // Returns 100, because myCommand is a SQL command that gets a non-null BigInt cell
myCommand.ExecuteScalar() as int? ?? 0; //Returns 0 even when myCommand is SQL command that gets a non-null BigInt cell
在这种情况下我必须使用第二种方式,因为myCommand.ExecuteScalar()可以返回DBNull
。但为什么第二种方式会返回与Convert.ToInt32
不同的结果?
答案 0 :(得分:9)
转换和转换(使用强制转换运算符,is
运算符和as
运算符)是两回事:
string
或Int64
到Int32
。object
到Int32
。 object
必须包含Int32
才能成功。在你的情况下它没有,演员表将返回null
。在代码中:
Int64 l = 100;
object o = l;
Int32 i1 = o as Int32? ?? 0; // Cast fails, so "as" will return 0. "??" will make it 0.
Int32 i2 = Convert.ToInt32(o); // The Int32 inside the object will be converted into an Int32 and will return 100.
答案 1 :(得分:2)
Convert.ToInt32
调用您传入的对象上的IConvertible
接口。对于double
和BigInteger
等类型,这是实现的,并将对象转换为{{1正如你所期待的那样。
int
关键字执行转换;如果转换失败,则返回null。这仅在对象已经是as
时才有效,而不仅仅是它是可以转换为int
的类型。 E.g。
int