Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If anyone could lay this out, I would appreciate it. Example of what I thought would work (assume the needed #include statements are there):

//.h file
class someclass(){}

//.cpp
someclass::
    someclass(){
         //implementation
         // of 
         //class
};
share|improve this question
Since when do classes have parentheses before the braces? – chris Jan 29 at 1:23
@chris: It looks like the OP meant that as the constructor declaration... – Billy ONeal Jan 29 at 1:24
@BillyONeal Correct. What I am most confused about is that I have a constructor with multiple parameters that works fine. – user2020058 Jan 29 at 1:27
@BillyONeal, Oh, the class part threw me off guard. – chris Jan 29 at 1:48

closed as not a real question by billz, Corbin, BЈовић, Anand, SWeko Jan 29 at 8:40

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

up vote 2 down vote accepted

someclass.h file

#ifndef SOME_CLASS_H
#define SOME_CLASS_H    

class someclass
{
public:
  someclass();  // declare default constructor

private:
  int member1; 
};

#endif

someclass.cpp

someclass::someclass()   // define default constructor
: member1(0)             // initialize class member in member initializers list
{
   //implementation
}
share|improve this answer
Most concise response, thank you. – user2020058 Jan 29 at 1:37

You have to declare the constructor in your class if you want to provide a definition for it. You are only doing the second thing.

Also, your original class definition contains some mistakes: no parentheses are needed after the class name, and a semicolon is needed after the final curly brace.

class someclass
{
    someClass(); // Here you DECLARE your constructor
};

...

someclass::someclass() // Here you DEFINE your constructor
{
    ...
}
share|improve this answer

Header:

//.h file
class someclass
{
    someclass();
}; // <-- don't forget semicolon here

Source:

#include "someClass.h"
//.cpp
someclass::someclass()
{
    // Implementation goes here
} // <-- No semicolon here
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.