Re: String literals and templates
"kanze" <kanze@gabi-soft.fr> schrieb im Newsbeitrag
news:1155824782.577778.56970@b28g2000cwb.googlegroups.com...
The compiler does seem to create more than one function, so
that creating only one instead is an optimization, isn't it?
No. The reason is that
void foo( char const (&array)[2] ) ;
declares a function which has a parameter of type char const
(&)[2], where as
void foo( char const array[2] ) ;
declares a function which has a parameter of type char const*.
But a 'const char (&array)[2]' is not the same as a 'const char array[2]',
is it? And according to my understanding, the following to functions do not
take arguments of identical types:
void foo( const char (&array)[2] );
void foo( const char (&array)[4] );
IMHO, the loss of information is a pessimization, not an
optimization; it certainly makes life more difficult for the
programmer. But it is one imposed by the language, for
historical reasons (dating back to the predecessor of C, B).
Where is there information being lost? If you look at the disassembly of the
following code on Visual C++ 8.0
template <class T>
void foo( const T& t )
{
cout << sizeof t << endl;
}
int main()
{
foo( "a" );
foo( "bb" );
foo( "ccc" );
return 0;
}
you can find three different functions generated for foo<>(). Each uses a
constant expression generated at compile time for the expression 'sizeof t'.
At least this applies to the debug build.
--
Matthias Hofmann
Anvil-Soft, CEO
http://www.anvil-soft.com - The Creators of Toilet Tycoon
http://www.anvil-soft.de - Die Macher des Klomanagers
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]