Related articles |
---|
Identifying types in C- or pascal-like type systems psyupjc@nottingham.ac.uk (Peter James Cowderoy) (2000-12-13) |
Re: Identifying types in C- or pascal-like type systems jejones@microware.com (James Jones) (2000-12-18) |
Re: Identifying types in C- or pascal-like type systems smoleski@surakware.com (Sebastian Moleski) (2000-12-18) |
Re: Identifying types in C- or pascal-like type systems schelian@bu.edu (Suhas Chelian) (2000-12-18) |
From: | Peter James Cowderoy <psyupjc@nottingham.ac.uk> |
Newsgroups: | comp.compilers |
Date: | 13 Dec 2000 15:02:47 -0500 |
Organization: | ACS, The University of Nottingham |
Keywords: | types |
Posted-Date: | 13 Dec 2000 15:02:46 EST |
What methods do people use for storing the type of a variable or
expression with C-like type systems? Does this change any further when
you incorporate the likes of C++'s templates?
--
psycho@cowderoy.co.uk
[C's type system is relatively simple, a bunch of base types along
with structures and unions, each value being one with some number of
"pointer to", "array of", and "function returning". C++ is more complex
what with templates, overloaded functions and operators. -John]
Return to the
comp.compilers page.
Search the
comp.compilers archives again.