Can anyone explain what this code does?
Con(const char* n){
char_number = new char[sizeof(n) + 1];
string(n).copy(char_number, sizeof(n) + 1);
}
I don't understand the string(n)
part. What exactly does this do?

0 Answer
这家伙很懒,什么都没留下...