473,396 Members | 1,827 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

RTTI in C

Neo
what is RTTI? and how to implements it? give me sourceful link for
learn and implements it (using standard C mean portable).

regards,
-aims

Jul 26 '06 #1
10 4527
Neo said:
what is RTTI?
Since it's upper case, my money would be on a macro name.
and how to implements it?
#define RTTI 42

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Jul 26 '06 #2
Neo <mo******@gmail.comwrote:
what is RTTI?
http://www.google.com/search?q=rtti
and how to implements it? give me sourceful link for
learn and implements it (using standard C mean portable).
STFW.

--
C. Benson Manica | I *should* know what I'm talking about - if I
cbmanica(at)gmail.com | don't, I need to know. Flames welcome.
Jul 26 '06 #3
funny.
Richard Heathfield wrote:
Neo said:
what is RTTI?

Since it's upper case, my money would be on a macro name.
and how to implements it?

#define RTTI 42

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Jul 26 '06 #4

Neo wrote:
what is RTTI? and how to implements it? give me sourceful link for
learn and implements it (using standard C mean portable).

regards,
-aims
If you don't know what it is, why do you want to know how to implement
it? What were you planning on using it for?

Jul 26 '06 #5


Neo wrote On 07/26/06 10:45,:
what is RTTI? and how to implements it? give me sourceful link for
learn and implements it (using standard C mean portable).
Round Trip Time Inconsistency. This is a reference to
the so-called "twin paradox" of Special Relativity, in which
one twin takes a high-speed journey while leaving the other
behind, and upon return discovers that their ages are no
longer the same.

RTTI cannot be implemented in strictly conforming C
because of the requirement that the travelling twin must
move at high speed. The C Standard says nothing about
speed, which is purely an artifact of the implementation
and not a property of the language. Therefore, any attempt
to demonstrate RTTI necessarily involves the implementation-
dependent concept of "speed" and is thus non-portable.

--
Er*********@sun.com

Jul 26 '06 #6
Eric Sosman said:
>

Neo wrote On 07/26/06 10:45,:
>what is RTTI? and how to implements it? give me sourceful link for
learn and implements it (using standard C mean portable).

Round Trip Time Inconsistency. This is a reference to
the so-called "twin paradox" of Special Relativity, in which
one twin takes a high-speed journey while leaving the other
behind, and upon return discovers that their ages are no
longer the same.

RTTI cannot be implemented in strictly conforming C
because of the requirement that the travelling twin must
move at high speed.
But it could be modelled to a satisfactory degree of accuracy.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Jul 26 '06 #7
Eric Sosman wrote:
>
Neo wrote On 07/26/06 10:45,:
>>what is RTTI? and how to implements it? give me sourceful link for
learn and implements it (using standard C mean portable).


Round Trip Time Inconsistency. This is a reference to
the so-called "twin paradox" of Special Relativity, in which
one twin takes a high-speed journey while leaving the other
behind, and upon return discovers that their ages are no
longer the same.
There's a time inconsistency between wanting to implement something
before knowing what that something is!

Did I get it? ;-)

with respect,
Toni Uusitalo

Jul 26 '06 #8
Run-time type identification

"Neo" <mo******@gmail.com>
??????:11**********************@s13g2000cwa.google groups.com...
what is RTTI? and how to implements it? give me sourceful link for
learn and implements it (using standard C mean portable).

regards,
-aims

Jul 27 '06 #9
On Wed, 26 Jul 2006 14:53:52 +0000, Richard Heathfield
<in*****@invalid.invalidwrote:
>Neo said:
>what is RTTI?

Since it's upper case, my money would be on a macro name.
>and how to implements it?

#define RTTI 42
I get a similar result, and I'm prepared for changes.

#define RUN 1
#define TIME 5
#define TYPE 12
#define INFORMATION 24
#define R RUN
#define T1 TIME
#define T2 TYPE
#define I INFORMATION
#define RTTI (R + T1 + T2 + I)

Regards
--
jay
Jul 27 '06 #10
Bright He wrote:
Run-time type identification
1. Don't top-post. Your reply belongs following or interspersed with
properly trimmed quotes.

2. Your answer is incorrect. It does NOT mean that in C, as there is no
such thing.

Brian
Jul 27 '06 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Rick | last post by:
Hi, I wrote a few classes recently and am writing a small GC implementation for C++. I will be implementing my own gc_ptr type maintain a list where I'll store pointers to allocated memory. I...
2
by: shishir | last post by:
Please consider the following //file test.cpp #include <iostream> int main() { int x; try { throw x;
6
by: Kleidemos | last post by:
If I implement a simple RTTI system, more simple than C++ RTTI system for my program and this system is plus or minus: #define DEF_RTTI_BASE(name) virtual inline const char *Name(){ return...
9
by: Agoston Bejo | last post by:
Hello there, I would like to know what overheads there are to think of when using RTTI. I understand that enabling RTTI increases the sizes of the classes, but not the objects themselves. This...
2
by: denny | last post by:
Hey all, I know that dynamic_cast<> takes some time, but , for instance, is there a memoy cost associated in with it? Does it have to maintain a table in memory, thus bloating the runtime ram...
3
by: Steven T. Hatton | last post by:
I'm trying to work out a design for dynamically determining file types, and for generating new files of a given type. I'm curious to know what others think of my current strategy. Is it "so...
3
by: Neo | last post by:
Hi Friends, I have a question about RTTI. 1) In C++ we have vptr pointing to vtables which helps to make use of pointer as polymorphic entities. 2) Without knowing object type I can call methods...
5
by: dotNeter | last post by:
I'm studying the RTTI, and my current work is concern for how to get the self-defined type at runtime, that's exactly what the RTTI does. I mean, in my application, I built several self-defined...
2
by: Chameleon | last post by:
I know than dynamic_cast check string name of derived to base class and if one of them match, return the pointer of that object or else zero. I suppose, I dynamic_cast instead of strings, checks...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.