Does C++ supports variable template parameters ? | | |
I'm reading Modern C++ Design, and it is saying "Variable template
parameters simply don't exist."
But I find VC7.1 & VC8 support this feature.Who can tell me that which is
right -_-b
Many thanks. | | | | re: Does C++ supports variable template parameters ?
* Fan Yang: Quote:
I'm reading Modern C++ Design, and it is saying "Variable template
parameters simply don't exist."
But I find VC7.1 & VC8 support this feature.Who can tell me that which is
right -_-b
Have you heard about "context"? Some statements have context.
--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail? | | | | re: Does C++ supports variable template parameters ?
Fan Yang wrote: Quote:
I'm reading Modern C++ Design, and it is saying "Variable template
parameters simply don't exist."
aka variadic template parameters Quote:
But I find VC7.1 & VC8 support this feature.Who can tell me that which is
right -_-b
I am not aware of any compiler supporting variadic template parameters. | | | | re: Does C++ supports variable template parameters ?
I am sorry, but what's the context?
"Alf P. Steinbach" <alfps@start.no>
??????:4tqpp8F14tmapU1@mid.individual.net... Quote:
>* Fan Yang: Quote:
>I'm reading Modern C++ Design, and it is saying "Variable template
>parameters simply don't exist."
>But I find VC7.1 & VC8 support this feature.Who can tell me that which is
>right -_-b
>
Have you heard about "context"? Some statements have context.
>
--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
| | | | re: Does C++ supports variable template parameters ?
Noah Roberts wrote: Quote:
dasjotre wrote: Quote:
>Fan Yang wrote: Quote:
>>I'm reading Modern C++ Design, and it is saying "Variable template
>>parameters simply don't exist."
>aka variadic template parameters
>> Quote:
>>But I find VC7.1 & VC8 support this feature.Who can tell me that which is
>>right -_-b
>I am not aware of any compiler supporting variadic template parameters.
>
However, in practice this type of template can be created for some
upper number of N. Look at many examples from TR1 and Boost (tuple,
MPL, array, etc...). I'd be surprised if that book doesn't describe
these techneques but I haven't read the whole thing and certainly don't
know it by heart so I can't say what part the OP is talking about.
>
Yes, you can do it, but it's ghastly. To support 0..N arguments you have
to write N+1 templates. Which is why C++0x will probably have
variable-length argument lists for templates.
--
-- Pete
Roundhouse Consulting, Ltd. ( www.versatilecoding.com)
Author of "The Standard C++ Library Extensions: a Tutorial and
Reference." ( www.petebecker.com/tr1book) | | | | re: Does C++ supports variable template parameters ?
dasjotre wrote: Quote:
Fan Yang wrote: Quote:
I'm reading Modern C++ Design, and it is saying "Variable template
parameters simply don't exist."
>
aka variadic template parameters
> Quote:
But I find VC7.1 & VC8 support this feature.Who can tell me that which is
right -_-b
>
I am not aware of any compiler supporting variadic template parameters.
However, in practice this type of template can be created for some
upper number of N. Look at many examples from TR1 and Boost (tuple,
MPL, array, etc...). I'd be surprised if that book doesn't describe
these techneques but I haven't read the whole thing and certainly don't
know it by heart so I can't say what part the OP is talking about. | | | | re: Does C++ supports variable template parameters ?
Pete Becker wrote: Quote:
Noah Roberts wrote:
Quote: Quote:
However, in practice this type of template can be created for some
upper number of N. Look at many examples from TR1 and Boost (tuple,
MPL, array, etc...). I'd be surprised if that book doesn't describe
these techneques but I haven't read the whole thing and certainly don't
know it by heart so I can't say what part the OP is talking about.
>
Yes, you can do it, but it's ghastly. To support 0..N arguments you have
to write N+1 templates. Which is why C++0x will probably have
variable-length argument lists for templates.
Quote:
>From what I've seen it's more like N/X with X default parameters. For
instance, mpl's vector is implemented in terms of a vector10, vector20,
vector30...which have 10, 20, and 30 default parameters. | | | | re: Does C++ supports variable template parameters ?
Noah Roberts wrote: Quote:
dasjotre wrote: Quote:
Fan Yang wrote: Quote:
I'm reading Modern C++ Design, and it is saying "Variable template
parameters simply don't exist."
aka variadic template parameters Quote:
But I find VC7.1 & VC8 support this feature.Who can tell me that which is
right -_-b
I am not aware of any compiler supporting variadic template parameters.
>
However, in practice this type of template can be created for some
upper number of N. Look at many examples from TR1 and Boost (tuple,
MPL, array, etc...). I'd be surprised if that book doesn't describe
these techneques but I haven't read the whole thing and certainly don't
know it by heart so I can't say what part the OP is talking about.
In 'Modern C++ Design', he uses that technique to design type lists
and function wrappers. It is tedious and best done with something like
m4 or boost::preprocessor. Than again, having type lists, I see no
reason why you couldn't use them to emulate variadic template
parameters, up to the maximum length of the type lists.
But that is not a true variadic template like the ones you have in D. | | | | re: Does C++ supports variable template parameters ?
Noah Roberts wrote: Quote:
Pete Becker wrote: Quote:
>Noah Roberts wrote:
> Quote: Quote:
>>However, in practice this type of template can be created for some
>>upper number of N. Look at many examples from TR1 and Boost (tuple,
>>MPL, array, etc...). I'd be surprised if that book doesn't describe
>>these techneques but I haven't read the whole thing and certainly don't
>>know it by heart so I can't say what part the OP is talking about.
>>>
>Yes, you can do it, but it's ghastly. To support 0..N arguments you have
>to write N+1 templates. Which is why C++0x will probably have
>variable-length argument lists for templates.
> Quote:
>>From what I've seen it's more like N/X with X default parameters. For
instance, mpl's vector is implemented in terms of a vector10, vector20,
vector30...which have 10, 20, and 30 default parameters.
>
I haven't looked at the details there, but from a glance it seems like
that's just part of a divide and conquer approach for the preprocessor,
where each of those templates in turn generates 10 template classes.
Sooner or later you have to decide which template arguments are real and
which ones aren't.
Of course, any program that needs to pass more than ten template
arguments is out of control. <g>
--
-- Pete
Roundhouse Consulting, Ltd. ( www.versatilecoding.com)
Author of "The Standard C++ Library Extensions: a Tutorial and
Reference." ( www.petebecker.com/tr1book) | | | | re: Does C++ supports variable template parameters ?
Pete Becker wrote: Quote:
I haven't looked at the details there, but from a glance it seems like
that's just part of a divide and conquer approach for the preprocessor,
where each of those templates in turn generates 10 template classes.
Possible, but it would be surprising. Compiler output from errors
indicate the final types contain the default values; at least when
using MPL vector. But I haven't done a lot of looking either. Quote:
>
Sooner or later you have to decide which template arguments are real and
which ones aren't.
>
Of course, any program that needs to pass more than ten template
arguments is out of control. <g>
Well, the basic dimensional analysis idiom requires something like 8 or
9 so more than 10 isn't really outside reason in metaprogramming. | | | | re: Does C++ supports variable template parameters ?
Pete Becker wrote: Quote:
Of course, any program that needs to pass more than ten template
arguments is out of control. <g>
My compiler goes to 11...
(Just For the Spinal Tap fans ;-) )
regards
Andy Little | | | | re: Does C++ supports variable template parameters ?
kwikius wrote: Quote:
Pete Becker wrote:
> Quote:
Of course, any program that needs to pass more than ten template
arguments is out of control. <g>
>
My compiler goes to 11...
>
(Just For the Spinal Tap fans ;-) )
What's funny is my amp DOES go to 11 :P |  | | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,510 network members.
|