함수 인자로 형태로 넣어주면 같은 메모리를 사용하므로 효율이 극대화 된다. #include using namespace std; class Something { public: int m_value = 0; Something(const Something& st_in) { m_value = st_in.m_value; cout