C++'s most vexing parse again [duplicate]A confusing detail about the Most Vexing ParseC++ Why is variable a function and not an object?why c++ class initialisation from another class type not throwing an error?Calling a default constructor in a constructor argumentInitialization of vector with stream iteratorsCopy and Base Constructor don't initialize C++Prototyped class function not calledWhy the template parameter pack opens when passed Objects rather than typesConversion constructor not called where it should berequest for member “print” in “yello” which is of non-class type 'knight'What are the differences between a pointer variable and a reference variable in C++?How do I use arrays in C++?Pretty-print C++ STL containersHow can I convert a std::string to int?Does the GotW #101 “solution” actually solve anything?Image Processing: Algorithm Improvement for 'Coca-Cola Can' RecognitionIs there a way to write make_unique() in VS2012?Why initialize unique_ptr with a make_unique call?Replacing a 32-bit loop counter with 64-bit introduces crazy performance deviationsIs there a c++ temporary rvalue for constants
What are the penalties for overstaying in USA?
How precise do models need to be for 3d printing?
How does a blind passenger not die, if driver becomes unconscious
Going to get married soon, should I do it on Dec 31 or Jan 1?
No IMPLICIT_CONVERSION warning in this query plan
Why doesn't a marching band have strings?
Abel-Jacobi map on symmetric product of genus 4 curve
How well known and how commonly used was Huffman coding in 1979?
Why do some professors with PhDs leave their professorships to teach high school?
Why do textbooks often include the solutions to odd or even numbered problems but not both?
Do hotel cleaning personnel have any benefit from leaving empty bottles in the room as opposed to returning them to the store?
Are Finite Automata Turing Complete?
Why does the numerical solution of an ODE move away from an unstable equilibrium?
How come I was asked by a CBP officer why I was in the US?
Do French speakers not use the subjunctive informally?
Should I hide continue button until tasks are completed?
Should I include salary information on my CV?
Hot coffee brewing solutions for deep woods camping
What are the benefits of using the X Card safety tool in comparison to plain communication?
Low-gravity Bronze Age fortifications
Why do some games show lights shine through walls?
How to perform Login Authentication at the client-side?
Using “sparkling” as a diminutive of “spark” in a poem
STM Microcontroller burns every time
C++'s most vexing parse again [duplicate]
A confusing detail about the Most Vexing ParseC++ Why is variable a function and not an object?why c++ class initialisation from another class type not throwing an error?Calling a default constructor in a constructor argumentInitialization of vector with stream iteratorsCopy and Base Constructor don't initialize C++Prototyped class function not calledWhy the template parameter pack opens when passed Objects rather than typesConversion constructor not called where it should berequest for member “print” in “yello” which is of non-class type 'knight'What are the differences between a pointer variable and a reference variable in C++?How do I use arrays in C++?Pretty-print C++ STL containersHow can I convert a std::string to int?Does the GotW #101 “solution” actually solve anything?Image Processing: Algorithm Improvement for 'Coca-Cola Can' RecognitionIs there a way to write make_unique() in VS2012?Why initialize unique_ptr with a make_unique call?Replacing a 32-bit loop counter with 64-bit introduces crazy performance deviationsIs there a c++ temporary rvalue for constants
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
This question already has an answer here:
A confusing detail about the Most Vexing Parse
4 answers
Taken directly from http://herbsutter.com/2013/05/09/gotw-1-solution/
While widget w();
is clear for me, I have no idea how can the below code be a function declaration?
// same problem (gadget and doodad are types)
//
widget w( gadget(), doodad() ); // pitfall: not a variable declaration
How is this possible?
c++ c++11 gotw
marked as duplicate by Nicol Bolas
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Jun 16 at 18:44
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
A confusing detail about the Most Vexing Parse
4 answers
Taken directly from http://herbsutter.com/2013/05/09/gotw-1-solution/
While widget w();
is clear for me, I have no idea how can the below code be a function declaration?
// same problem (gadget and doodad are types)
//
widget w( gadget(), doodad() ); // pitfall: not a variable declaration
How is this possible?
c++ c++11 gotw
marked as duplicate by Nicol Bolas
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Jun 16 at 18:44
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
A confusing detail about the Most Vexing Parse
4 answers
Taken directly from http://herbsutter.com/2013/05/09/gotw-1-solution/
While widget w();
is clear for me, I have no idea how can the below code be a function declaration?
// same problem (gadget and doodad are types)
//
widget w( gadget(), doodad() ); // pitfall: not a variable declaration
How is this possible?
c++ c++11 gotw
This question already has an answer here:
A confusing detail about the Most Vexing Parse
4 answers
Taken directly from http://herbsutter.com/2013/05/09/gotw-1-solution/
While widget w();
is clear for me, I have no idea how can the below code be a function declaration?
// same problem (gadget and doodad are types)
//
widget w( gadget(), doodad() ); // pitfall: not a variable declaration
How is this possible?
This question already has an answer here:
A confusing detail about the Most Vexing Parse
4 answers
c++ c++11 gotw
c++ c++11 gotw
edited May 16 '13 at 15:21
0x499602D2
69.7k29 gold badges123 silver badges209 bronze badges
69.7k29 gold badges123 silver badges209 bronze badges
asked May 16 '13 at 13:27
YankoYanko
4245 silver badges15 bronze badges
4245 silver badges15 bronze badges
marked as duplicate by Nicol Bolas
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Jun 16 at 18:44
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by Nicol Bolas
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Jun 16 at 18:44
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
In a function declaration, arguments of type array decay into pointers to the first element, arguments of type function decay into a function pointer, so the signature would be:
widget w( gadget(*)(), doodad(*)() );
That is, a function that takes as the first argument a pointer to a function taking no arguments and returning gadget
, that takes as second argument a pointer to a function taking no arguments and returning a doodad
and that the function itself returns a widget
There are even more interesting or confusing cases, like:
// assume 'x' is a variable defined somewhere:
widget w(gadget(x));
How could that be interpreted as a function declaration? I mean, x
is a variable, right? Well, when declaring a variable you can add extra parenthesis, so gadget x;
and gadget (x);
both declare the same variable x
. The same applies to function arguments so the code above looks like a declaration of a function that takes a first argument named x
of type gadget
and returns a widget
...
47
Mother of God. ಠ_ಠ
– Yanko
May 16 '13 at 13:32
1
+1 first time knowing that arguments of type function decay into a function pointer. thank you!
– taocp
May 16 '13 at 13:34
4
@Yanko: of course, that is why now you can usewidget wgadget, doodad;
=> this cannot be misconstrued as a function :)
– Matthieu M.
May 16 '13 at 14:49
@MatthieuM. For those of you lucky enough to use C++11 :)
– David Rodríguez - dribeas
May 16 '13 at 15:18
@DavidRodríguez-dribeas: I am afraid I am lucky yet... at least, at work.
– Matthieu M.
May 17 '13 at 6:08
|
show 1 more comment
It's function that gets two functions, that returns gadget
and doodad
and either of them gets no arguments.
Example that compiles fine.
#include <iostream>
class widget;
class gadget;
class doodad;
gadget a()
doodad b() ;
widget w( gadget(), doodad() )
int main()
w(a,b);
return 0;
http://ideone.com/YjZK9Y
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
In a function declaration, arguments of type array decay into pointers to the first element, arguments of type function decay into a function pointer, so the signature would be:
widget w( gadget(*)(), doodad(*)() );
That is, a function that takes as the first argument a pointer to a function taking no arguments and returning gadget
, that takes as second argument a pointer to a function taking no arguments and returning a doodad
and that the function itself returns a widget
There are even more interesting or confusing cases, like:
// assume 'x' is a variable defined somewhere:
widget w(gadget(x));
How could that be interpreted as a function declaration? I mean, x
is a variable, right? Well, when declaring a variable you can add extra parenthesis, so gadget x;
and gadget (x);
both declare the same variable x
. The same applies to function arguments so the code above looks like a declaration of a function that takes a first argument named x
of type gadget
and returns a widget
...
47
Mother of God. ಠ_ಠ
– Yanko
May 16 '13 at 13:32
1
+1 first time knowing that arguments of type function decay into a function pointer. thank you!
– taocp
May 16 '13 at 13:34
4
@Yanko: of course, that is why now you can usewidget wgadget, doodad;
=> this cannot be misconstrued as a function :)
– Matthieu M.
May 16 '13 at 14:49
@MatthieuM. For those of you lucky enough to use C++11 :)
– David Rodríguez - dribeas
May 16 '13 at 15:18
@DavidRodríguez-dribeas: I am afraid I am lucky yet... at least, at work.
– Matthieu M.
May 17 '13 at 6:08
|
show 1 more comment
In a function declaration, arguments of type array decay into pointers to the first element, arguments of type function decay into a function pointer, so the signature would be:
widget w( gadget(*)(), doodad(*)() );
That is, a function that takes as the first argument a pointer to a function taking no arguments and returning gadget
, that takes as second argument a pointer to a function taking no arguments and returning a doodad
and that the function itself returns a widget
There are even more interesting or confusing cases, like:
// assume 'x' is a variable defined somewhere:
widget w(gadget(x));
How could that be interpreted as a function declaration? I mean, x
is a variable, right? Well, when declaring a variable you can add extra parenthesis, so gadget x;
and gadget (x);
both declare the same variable x
. The same applies to function arguments so the code above looks like a declaration of a function that takes a first argument named x
of type gadget
and returns a widget
...
47
Mother of God. ಠ_ಠ
– Yanko
May 16 '13 at 13:32
1
+1 first time knowing that arguments of type function decay into a function pointer. thank you!
– taocp
May 16 '13 at 13:34
4
@Yanko: of course, that is why now you can usewidget wgadget, doodad;
=> this cannot be misconstrued as a function :)
– Matthieu M.
May 16 '13 at 14:49
@MatthieuM. For those of you lucky enough to use C++11 :)
– David Rodríguez - dribeas
May 16 '13 at 15:18
@DavidRodríguez-dribeas: I am afraid I am lucky yet... at least, at work.
– Matthieu M.
May 17 '13 at 6:08
|
show 1 more comment
In a function declaration, arguments of type array decay into pointers to the first element, arguments of type function decay into a function pointer, so the signature would be:
widget w( gadget(*)(), doodad(*)() );
That is, a function that takes as the first argument a pointer to a function taking no arguments and returning gadget
, that takes as second argument a pointer to a function taking no arguments and returning a doodad
and that the function itself returns a widget
There are even more interesting or confusing cases, like:
// assume 'x' is a variable defined somewhere:
widget w(gadget(x));
How could that be interpreted as a function declaration? I mean, x
is a variable, right? Well, when declaring a variable you can add extra parenthesis, so gadget x;
and gadget (x);
both declare the same variable x
. The same applies to function arguments so the code above looks like a declaration of a function that takes a first argument named x
of type gadget
and returns a widget
...
In a function declaration, arguments of type array decay into pointers to the first element, arguments of type function decay into a function pointer, so the signature would be:
widget w( gadget(*)(), doodad(*)() );
That is, a function that takes as the first argument a pointer to a function taking no arguments and returning gadget
, that takes as second argument a pointer to a function taking no arguments and returning a doodad
and that the function itself returns a widget
There are even more interesting or confusing cases, like:
// assume 'x' is a variable defined somewhere:
widget w(gadget(x));
How could that be interpreted as a function declaration? I mean, x
is a variable, right? Well, when declaring a variable you can add extra parenthesis, so gadget x;
and gadget (x);
both declare the same variable x
. The same applies to function arguments so the code above looks like a declaration of a function that takes a first argument named x
of type gadget
and returns a widget
...
edited May 16 '13 at 13:36
answered May 16 '13 at 13:31
David Rodríguez - dribeasDavid Rodríguez - dribeas
176k16 gold badges240 silver badges440 bronze badges
176k16 gold badges240 silver badges440 bronze badges
47
Mother of God. ಠ_ಠ
– Yanko
May 16 '13 at 13:32
1
+1 first time knowing that arguments of type function decay into a function pointer. thank you!
– taocp
May 16 '13 at 13:34
4
@Yanko: of course, that is why now you can usewidget wgadget, doodad;
=> this cannot be misconstrued as a function :)
– Matthieu M.
May 16 '13 at 14:49
@MatthieuM. For those of you lucky enough to use C++11 :)
– David Rodríguez - dribeas
May 16 '13 at 15:18
@DavidRodríguez-dribeas: I am afraid I am lucky yet... at least, at work.
– Matthieu M.
May 17 '13 at 6:08
|
show 1 more comment
47
Mother of God. ಠ_ಠ
– Yanko
May 16 '13 at 13:32
1
+1 first time knowing that arguments of type function decay into a function pointer. thank you!
– taocp
May 16 '13 at 13:34
4
@Yanko: of course, that is why now you can usewidget wgadget, doodad;
=> this cannot be misconstrued as a function :)
– Matthieu M.
May 16 '13 at 14:49
@MatthieuM. For those of you lucky enough to use C++11 :)
– David Rodríguez - dribeas
May 16 '13 at 15:18
@DavidRodríguez-dribeas: I am afraid I am lucky yet... at least, at work.
– Matthieu M.
May 17 '13 at 6:08
47
47
Mother of God. ಠ_ಠ
– Yanko
May 16 '13 at 13:32
Mother of God. ಠ_ಠ
– Yanko
May 16 '13 at 13:32
1
1
+1 first time knowing that arguments of type function decay into a function pointer. thank you!
– taocp
May 16 '13 at 13:34
+1 first time knowing that arguments of type function decay into a function pointer. thank you!
– taocp
May 16 '13 at 13:34
4
4
@Yanko: of course, that is why now you can use
widget wgadget, doodad;
=> this cannot be misconstrued as a function :)– Matthieu M.
May 16 '13 at 14:49
@Yanko: of course, that is why now you can use
widget wgadget, doodad;
=> this cannot be misconstrued as a function :)– Matthieu M.
May 16 '13 at 14:49
@MatthieuM. For those of you lucky enough to use C++11 :)
– David Rodríguez - dribeas
May 16 '13 at 15:18
@MatthieuM. For those of you lucky enough to use C++11 :)
– David Rodríguez - dribeas
May 16 '13 at 15:18
@DavidRodríguez-dribeas: I am afraid I am lucky yet... at least, at work.
– Matthieu M.
May 17 '13 at 6:08
@DavidRodríguez-dribeas: I am afraid I am lucky yet... at least, at work.
– Matthieu M.
May 17 '13 at 6:08
|
show 1 more comment
It's function that gets two functions, that returns gadget
and doodad
and either of them gets no arguments.
Example that compiles fine.
#include <iostream>
class widget;
class gadget;
class doodad;
gadget a()
doodad b() ;
widget w( gadget(), doodad() )
int main()
w(a,b);
return 0;
http://ideone.com/YjZK9Y
add a comment |
It's function that gets two functions, that returns gadget
and doodad
and either of them gets no arguments.
Example that compiles fine.
#include <iostream>
class widget;
class gadget;
class doodad;
gadget a()
doodad b() ;
widget w( gadget(), doodad() )
int main()
w(a,b);
return 0;
http://ideone.com/YjZK9Y
add a comment |
It's function that gets two functions, that returns gadget
and doodad
and either of them gets no arguments.
Example that compiles fine.
#include <iostream>
class widget;
class gadget;
class doodad;
gadget a()
doodad b() ;
widget w( gadget(), doodad() )
int main()
w(a,b);
return 0;
http://ideone.com/YjZK9Y
It's function that gets two functions, that returns gadget
and doodad
and either of them gets no arguments.
Example that compiles fine.
#include <iostream>
class widget;
class gadget;
class doodad;
gadget a()
doodad b() ;
widget w( gadget(), doodad() )
int main()
w(a,b);
return 0;
http://ideone.com/YjZK9Y
edited May 16 '13 at 21:00
answered May 16 '13 at 13:33
RiaDRiaD
34.2k9 gold badges60 silver badges103 bronze badges
34.2k9 gold badges60 silver badges103 bronze badges
add a comment |
add a comment |