Created
January 27, 2014 14:26
-
-
Save kkdai/8649430 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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