c++ struct vs class
// In C++, a class and a struct are COMPLETELY IDENTICAL
// Except structs default to PUBLIC access and inheritance
// Whereas class defaults to PRIVATE.
c++ struct vs class
// In C++, a class and a struct are COMPLETELY IDENTICAL
// Except structs default to PUBLIC access and inheritance
// Whereas class defaults to PRIVATE.
class is replace by structure
1) Members of a class are private by default and members of a struct are public
by default.
For example program 1 fails in compilation and program 2 works fine.
/ Program 1
#include <stdio.h>
class Test {
int x; // x is private
};
int main()
{
Test t;
t.x = 20; // compiler error because x is private
getchar();
return 0;
}
// Program 2
#include <stdio.h>
struct Test {
int x; // x is public
};
int main()
{
Test t;
t.x = 20; // works fine because x is public
getchar();
return 0;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us