将对象类型转换为 DataRow &数据读取器
将对象类型转换为 DataRow &数据读取器
Casting an Object type to DataRow & IDatareader
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
将对象类型转换为 DataRow &数据读取器
Casting an Object type to DataRow & IDatareader
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
你不能只是将一个对象投射到你提到的任何一个对象上。它们必须是其中之一或派生自这些类型。
编程中没有炼金术。
You cant just cast an object to either of those you mentioned. They have to be either of those or derive from those types.
There is no alchemy in programming.
转换只能在兼容的类型之间进行。要转换两个不兼容的类型,您需要执行转换。
例如:您不能将字符串转换为 int,反之亦然,因为它们是不兼容的类型,因此有一种方法可以将两者相互转换。
我不想在这里写整个故事来解释转换和转换之间的区别,我宁愿建议您阅读 这个有趣的对话关于SO。请阅读Eric Lippert的答案。 Eric Lippert 在 Microsoft 的 C# 编译器开发团队工作。
Casting can only happen between compatible types. To transform two incompatible types you need to perform conversion.
Ex: You cannot cast a string into int and vice versa since they are incompatible types so there is a way of converting both into one another.
Instead of writing the whole story explaining difference between casting and conversion here, I'd rather recommend you to read this interesting conversation on SO. Do read Eric Lippert's answer. Eric Lippert works with Microsoft in C# compiler development team.