Possible Duplicate:
Is there a difference in C++ between copy initialization and direct initialization?
Class A
{
public:
//some member function call
private:
int x;
char a;
};
int main()
{
A a;
A b;
}
Hi can You tell me the Difference's in Between these when I call or initialize the objects of above class as
A a(b);
A a=b;
a=b;