#include <iostream>
class y {
class y(int a , int b ) {
std::cout << "who is .. ";
}
};
int main() {
y :: jh ;
}
클래스 y를 호출하고 싶음
#include <iostream>
class y {
class y(int a , int b ) {
std::cout << "who is .. ";
}
};
int main() {
y :: jh ;
}
클래스 y를 호출하고 싶음
댓글 1