what does T" means

Newbie Member
24Oct2007,17:00   #1
ravi_garg's Avatar
what does T" means in the following signature..
Code:
template <typename T>
const T" operator [] ( int idx) const;
Here T is template name but what does " means...
Go4Expert Founder
24Oct2007,20:48   #2
shabbir's Avatar
Try compiling and see if it compiles correctly without any errors / warnings.
Newbie Member
25Oct2007,11:22   #3
ravi_garg's Avatar
Ya compiler does give an error.
The piece of code is taken form an e-book.
probably some typo.
Go4Expert Founder
25Oct2007,17:12   #4
shabbir's Avatar
Looks like
Go4Expert Member
3Jul2009,15:27   #5
Manojbijnori's Avatar
Here T is a data type for the class type variable

=ravi_garg;19559]what does T" means in the following signature..
Code:
template <typename T>
const T" operator [] ( int idx) const;
Here T is template name but what does " means... [/quote]
Banned
3Jul2009,15:31   #6
naimish's Avatar
T is a parameter over here.