기본 전달
copy
int value = 10;
std::thread t(modify, value);
thread 저장소
value 복사본
join 후 원본
main의 value는 그대로입니다.