성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>C/C++ - typedef struct와 타입 전방 선언으로 인한 C2371 오류</h1> <p> 마이크로소프트의 헤더 파일은, struct 타입 정의에서 <a target='tab' href='https://finsternis.tistory.com/27'>태그 명과 타입 명</a>을 달리하는 것을 볼 수 있습니다. (아마도 초창기 C 언어 구문의 제약으로 인한 관례였을 것입니다.)<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > typedef struct <span style='color: blue; font-weight: bold'>_COMMPROP</span> { WORD wPacketLength; WORD wPacketVersion; ...[생략]... DWORD dwProvSpec2; WCHAR wcProvChar[1]; } <span style='color: blue; font-weight: bold'>COMMPROP</span>,*LPCOMMPROP; // 태그명 _COMMPROP // 타입명 COMMPROP </pre> <br /> 이게 문제가 되는 경우가 바로 전방 선언입니다. 예를 들어, 다음과 같이 소스 코드를 구성하면,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > // -------- "ConsoleApplication1.h" #pragma once <span style='color: blue; font-weight: bold'>struct AStruct;</span> class MyType { public: AStruct* as; MyType(); }; </pre> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > // -------- "ConsoleApplication1.cpp" #include "ConsoleApplication1.h" #include "AStruct.h" MyType::MyType() { as = new AStruct(); // Error C2027 use of undefined type 'AStruct' } </pre> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > // -------- "AStruct.h" <span style='color: blue; font-weight: bold'>typedef struct tagAStruct</span> { int a = 0; <span style='color: blue; font-weight: bold'>} AStruct;</span> // Error C2371 'AStruct': redefinition; different basic types </pre> <br /> 전방 선언인 "struct AStruct;" 구문과 충돌이 발생하면서 C2027, C2371 컴파일 오류가 발생합니다.<br /> <br /> <hr style='width: 50%' /><br /> <br /> 오류 해결을 하려면 2가지 방법이 있습니다. 하나는 태그 명과 타입 명을 동일하게 정의하거나,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > typedef struct <span style='color: blue; font-weight: bold'>AStruct</span> { int a = 0; AStruct* pNext = nullptr; } <span style='color: blue; font-weight: bold'>AStruct</span>; </pre> <br /> 아니면 typedef을 쓰지 않는 것입니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > struct AStruct { int a = 0; AStruct* pNext = nullptr; }; </pre> <br /> <hr style='width: 50%' /><br /> <br /> 사실 이 문제는 struct뿐만 아니라 class에 대해서도 동일하게 발생합니다. 단지, class의 경우 다음과 같이 정의하는 경우가 극히 드물기 때문에,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > typedef class tagMyClass { public: AStruct* as = nullptr; BStruct* bs = nullptr; } MyClass; </pre> <br /> 대개 struct에 대해서만 문제가 발생하는 것처럼 보일 뿐입니다.<br /> <br /> (<a target='tab' href='https://www.sysnet.pe.kr/bbs/DownloadAttachment.aspx?fid=1470&boardid=331301885'>첨부 파일은 이 글의 예제 코드를 포함</a>합니다.)<br /> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
8967
(왼쪽의 숫자를 입력해야 합니다.)