Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
198 views
in Technique[技术] by (71.8m points)

c++ - Named? parameters in templates, functions

Is there any update in the upcoming C++0x standard on named parameters in templates and/or functions? For example, I would like to be able to write the following:

having defined previously:

template<class T = int,class Policy_1, class Policy_2>
class X
{
};

then in main:

X<Policy_2: NoReturn> x;

this same with functions; having:

void f(int arg_1 = 0, int arg_2 = 1, int arg_3 = 2)
{
}

then in main:

f(arg_3: 55);
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

For functions you can use the Named Parameters Idiom (in both C++98 and C++0x).

See C++ FAQ item 10.20 What is the "Named Parameter Idiom"?.

For template arguments I think you can use the idea of wrapping, using "type carrier" types that by their type encode which template argument they are. It gets complex. You might check out the Boost Parameters library for ideas, but essentially, for template arguments I do not think it's worth spending time on (not to mention actually using) -- it's academic.

Cheers & hth.,


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...