Skip to content

Instantly share code, notes, and snippets.

@kkdai
Created January 27, 2014 14:26
Show Gist options
  • Save kkdai/8649430 to your computer and use it in GitHub Desktop.
Save kkdai/8649430 to your computer and use it in GitHub Desktop.
class BB
{
private:
int aa, bb;
public:
BB():aa(1),bb(5) //note: check about default value assign aa, bb depends on compiler. DON'T WRITE LIKE THAT
{
printf("Print out value aa = %d, bb=%d \n", aa, bb);
bb = aa;
printf("Print out value bb = %d \n", bb);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment