Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 109011
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T02:00:08+00:00 2026-05-11T02:00:08+00:00

#include<iostream> class name { public: int a; name():a(0){}; }; void add(name * pname) {

  • 0
#include<iostream> class name { public:     int a;     name():a(0){}; }; void add(name * pname) {     pname = NULL; } int main() {     name varName();     name * pName = new name();     add(pName);     add(&varName);//error C2664: 'add' : cannot convert parameter 1 from 'name __cdecl *)(void)' to 'name *' } 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T02:00:09+00:00Added an answer on May 11, 2026 at 2:00 am

    I think it’s worth telling you about a similar problem, that also causes trouble:

    struct foo { }; struct bar { bar(foo f); };  int main() {   // does *not* create a bar object initialized by a default constructed    // foo object.   bar b(foo()); } 

    What b really is is a function that returns a bar and takes as first argument a pointer to a function that returns a foo taking no arguments. It’s the same as:

    bar b(foo(*)()); 

    If you want to create a bar object initialized by a default constructed foo, put parentheses around the argument. That makes it doesn’t look like a function declaration anymore, and the compiler will interpret it like you want:

    bar b((foo())); 

    There are also non-obvious cases where a compiler error should be risen. GCC gets this wrong, but Comeau gets it right again. Consider the following snippet

    struct foo {   static bool const value = false; };  int main() {   int v(int(foo::value)); } 

    You will probably expect that this takes the static constant, and casts it to int, initializing the v variable to 0? No, it won’t according to the Standard, because the initializer can be interpreted as a declaration, according to pure syntax analysis, as the following shows

    struct foo {   static int value; };  // valid, parentheses are redundant! Defines `foo::value`. int (foo::value);  

    Whenever the initializer can be interpreted as a declaration, in such a situation whole the declaration will declare a function. So, the line in main declares a function like the following, omitting the redundant and meaningless parentheses

    int v(int foo::value); 

    And this will cause a compiler error when parsing the function declaration, because a function parameter name may not be qualified.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

#include<iostream> using namespace std; class A { int a; int b; public: void eat()
#include<iostream> using namespace std; class TCSGraph{ public: void addVertex(int vertex); void display(); TCSGraph(){ head
#include iostream class A { private: int a; public : A(): a(-1) {} int
Here is a little test program: #include <iostream> class Test { public: static void
#include iostream #include vector class ABC { private: bool m_b; public: ABC() : m_b(false)
#include iostream #include vector class ABC { }; class VecTest { std::vector<ABC> vec; public:
#include <iostream> using namespace std; class Base { public: Base(){cout <<Base<<endl;} virtual ~Base(){cout<<~Base<<endl;} virtual
I'm trying to compile such code: #include <iostream> using namespace std; class CPosition {
Consider the following use of template template parameters... #include <iostream> template <typename X> class
The following code prints 20, i.e. sizeof(z) is 20. #include <iostream.h> class Base {

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.