23.09.21 02:37 작성
·
397
1
header 파일에서 전역상수를 미리 초기화하면 헤더를 부를때마다 다른 주소값이 할당된다고 하셨습니다. 그래서 cpp 파일에서 초기화를 따로 해주었습니다.
그런데 cpp 파일에서 전역변수를 미리 초기화하면, 모든 다른 파일들에서 동일한 주소값이 할당되던데, 제가 맞을까요? 테스트로 돌려본 코드 첨부합니다.
#include <iostream>
extern char x; // 이미 extern 에서 초기화됐으면 다시 초기화 x
// 아직 초기화 안했으면 여기서 초기화 -> 그럼 다른 파일에서 초기화 안돼!!!!!!!!!!!!!!!!
extern void test();
int main()
{
x = 'm'; // extern에서 초기화 됐어도 변경 가능!!!
std::cout << ::x << "\n";
std::cout << x << " " << static_cast<void*>(&x) << "\n"; // 변경 된 것 확인할 수 있음
test(); // 여기서도 변경
return 0;
}
extern char x = 'e';
#include <iostream>
extern char x;
void test()
{
x = 't';
std::cout << x << " " << static_cast<void*>(&x) << "\n";
}
물론 extern 변수를 선언만 한 후, main 함수가 있는 cpp 파일에서 초기화를 하더라도 마찬가지입니다.
#include <iostream>
extern void test();
extern char h = 'h';
int main()
{
h = 'u';
std::cout << ::h << " " << static_cast<void*>(&h) << "\n";
test();
return 0;
}
extern char h;
#include <iostream>
extern char h;
void test()
{
h = 'j';
std::cout << ::h << " " << static_cast<void*>(&h) << "\n";
}
감사합니다.
2023. 09. 22. 16:32
감사합니다.