RTTI
- 网络运行时类型信息(Run-Time Type Information);运行时类型识别(Run-time Type Identification);运行时确定对象类型
RTTI
RTTI
运行时类型信息(Run-Time Type Information)
运行时类型信息(RTTI):允许程序员在类层次结构中漫游;完成动态转换(向上、向下和交叉强制);获取指定类型的 typei…
运行时类型识别(Run-time Type Identification)
通过运行时类型识别(RTTI)(Run-Time Type Identification),程序能够使用基类的指针或引用来检查这些指针或引用所指的对 …
运行时确定对象类型
(转)如何在运行时确定对象类型(RTTI) - [C,C++]2008-06-14 linux下boost.python - [python] 2008-06-14 C++的反射,typeid(…
运行时类型标识
运行时类型标识(RTTI),可以在程序执行期间判定对象类型。例如使用它能够确切地知道基类引用指向了什么类型对象。
运行期类型信息
运行期类型信息(RTTI)是一种语言特征,能使应用程序在运行时得到关于对象的信息。运行期类型信息(RTTI)是一种语言特征, …
1
If the sources don't use dynamic_cast or the typeid operator, Run Time Type Identification (RTTI) might be disabled.
如果源代码没有使用dynamic_cast或者typeid操作符,那么就可以禁用运行时类型识别(RTTI)。
2
This requirement on RTTI was a restricting factor in the environments with limited resources that were being targeted on the project.
如果项目中的某些目标资源是有限的,对于RTTI的需求会成为这种环境中的限制性因素。
3
Note that disabling RTTI in a code that contains dynamic_cast or typeid might produce undesirable effects, including code crash.
请注意,在包含dynamic_cast或者typeid的代码中禁用RTTI,可能会产生一些负面的影响,包括代码崩溃。
4
Unlike cl, the g++ compiler does not need any special option to turn RTTI on.
与cl不同,g++编译器不需要任何特殊的选项以打开RTTI。
5
Disabling RTTI might help produce an executable of a smaller size.
禁用RTTI可能有助于产生更小的可执行文件。
6
Will C++ support the disturbed development later? And what about further support for RTTI and multi-thread?
今后C++会支持分布开发吗?对RTTI和多线程的进一步支持呢?
7
It does not rely on exceptions or RTTI. It can be compiled with or without STL support.
它不依赖于异常或者运行时类型信息,有没有STL支持都可以编译。
8
The tool chain binaries *do* support C++ exceptions and RTTI by default.
在默认情况下工具链二进制文件支持C++例外和运行时信息。
9
This is because native C++ RTTI values are retrieved through an additional indirection on almost all platforms.
这是因为在几乎所有平台上,原生的C++RTTI是通过一个额外的间接层来获得。
10
This is the way i understand RTTI. . .
这是我理解RTTI的途径……