大约有 41,000 项符合查询结果(耗时:0.0241秒) [XML]
Regular cast vs. static_cast vs. dynamic_cast [duplicate]
...e languages that I've never really understood. I've obviously used regular casts i.e.
8 Answers
...
When should static_cast, dynamic_cast, const_cast and reinterpret_cast be used?
...
static_cast is the first cast you should attempt to use. It does things like implicit conversions between types (such as int to float, or pointer to void*), and it can also call explicit conversion functions (or implicit ones). In m...
Why use static_cast(x) instead of (int)x?
I've heard that the static_cast function should be preferred to C-style or simple function-style casting. Is this true? Why?
...
What is the difference between static_cast and C style casting?
Is there any reason to prefer static_cast<> over C style casting? Are they equivalent? Is their any sort of speed difference?
...
Java Class.cast() vs. cast operator
Having being taught during my C++ days about evils of the C-style cast operator I was pleased at first to find that in Java 5 java.lang.Class had acquired a cast method.
...
dynamic_cast and static_cast in C++
I am quite confused with the dynamic_cast keyword in C++.
10 Answers
10
...
When to use reinterpret_cast?
I am little confused with the applicability of reinterpret_cast vs static_cast . From what I have read the general rules are to use static cast when the types can be interpreted at compile time hence the word static . This is the cast the C++ compiler uses internally for implicit casts also.
...
Should I use static_cast or reinterpret_cast when casting a void* to whatever
Both static_cast and reinterpret_cast seem to work fine for casting void* to another pointer type. Is there a good reason to favor one over the other?
...
总结const_cast、static_cast、dynamic_cast、reinterpret_cast - C/C++ - ...
总结const_cast、static_cast、dynamic_cast、reinterpret_cast简单总结:1)const_cast:移除const属性。2)static_cast:强转,与C类型转换类似,不检查类型来保证转换安全。也可用于指针的父类到子类的...简单总结:
1) const_cast:移除const属性。
...
Shorter syntax for casting from a List to a List?
I know its possible to cast a list of items from one type to another (given that your object has a public static explicit operator method to do the casting) one at a time as follows:
...