성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[tree soap] 아차! f는 기억이 나는데, m은 ㅜㅜ 감사합니다!!! ^...
[정성태] 'm'은 decimal 타입의 숫자에 붙는 접미사입니다. ...
[정성태] https://lxr.sourceforge.io/ http...
[정성태] 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...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
글쓰기
제목
이름
암호
전자우편
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'>Visual C++ 컴파일 오류 - Cannot use __try in functions that require object unwinding</h1> <p> "Cannot use __try in functions that require object unwinding" 오류에 대해 MSDN에 다음과 같은 설명이 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Compiler Error C2712 ; <a target='tab' href='https://docs.microsoft.com/en-us/cpp/error-messages/compiler-errors-2/compiler-error-c2712'>https://docs.microsoft.com/en-us/cpp/error-messages/compiler-errors-2/compiler-error-c2712</a> </pre> <br /> 위의 내용을 간단한 예제들과 함께 살펴볼까요? ^^<br /> <br /> 우선, 소멸자가 없는 클래스를 메서드에 포함한 후 __try/__finally를 사용하면 아무런 이상이 없습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > class CTestClassWithoutDtor { public: CTestClassWithoutDtor() { } }; void CTest::UseTestClassWithoutDtor() { <span style='color: blue; font-weight: bold'>CTestClassWithoutDtor dtor;</span> __try { } __finally { } } </pre> <br /> 하지만, __try/__finally를 포함한 메서드에 소멸자가 있는 클래스를 사용하는 경우에는 C2712 오류가 발생합니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > class CTestClassWithDtor { public: CTestClassWithDtor() { } ~CTestClassWithDtor() { } }; void CTest::UseTestClassWithDtor() { <span style='color: blue; font-weight: bold'>CTestClassWithDtor dtor; // error C2712</span> : Cannot use __try in functions that require object unwinding __try { } __finally { } } </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;' > void CTest::CreateTestClassWithDtor() { <span style='color: blue; font-weight: bold'>CTestClassWithDtor *pDtor = new CTestClassWithDtor(); // error C2712</span> : Cannot use __try in functions that require object unwinding __try { } __finally { } } </pre> <br /> 가장 이상적인 해결책은 물론 소멸자를 가진 클래스를 사용하지 않는 것입니다. 하지만, 이게 말처럼 쉬운 것이 아닙니다. 다 써야할 상황이 되니 쓰고 있는 거니까요.<br /> <br /> 대신, 생성을 우회하면 해결할 수 있습니다. 즉, new 했던 것을 다음과 같이 별도의 함수로 빼서 처리하면 됩니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > <span style='color: blue; font-weight: bold'>CTestClassWithoutDtor *CTest::ClassWithoutDtorFactory() { return new CTestClassWithoutDtor(); }</span> void CTest::CreateTestClassWithoutDtor() { // CTestClassWithoutDtor *pDtor = new CTestClassWithoutDtor(); CTestClassWithoutDtor *pDtor = <span style='color: blue; font-weight: bold'>ClassWithoutDtorFactory();</span> __try { } __finally { } } </pre> <br /> <hr style='width: 50%' /><br /> <br /> 그 외에 STL 라이브러리에서 제공되는 클래스를 무심코 사용하다 보면 이렇게 C2712 오류가 발생합니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > // error C2712 : Cannot use __try in functions that require object unwinding void CTest::OutputString(<span style='color: blue; font-weight: bold'>wstring txt</span>) { __try { } __finally { } } </pre> <br /> 왜냐하면, wstring같은 클래스들이 기본적으로 소멸자를 정의하고 있기 때문입니다. 이렇게 함수의 인자로 전달하는 경우는 포인터로 전달하면 오류를 우회할 수 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > void CTest::OutputString2(<span style='color: blue; font-weight: bold'>wstring *pTxt</span>) { __try { } __finally { } } </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;' > void CTest::OutputString(<span style='color: blue; font-weight: bold'>wstring &txt</span>) { __try { } __finally { } } </pre> <br /> 대충... 감이 오시죠? ^^<br /> <br /> (<a target='tab' href='http://www.sysnet.pe.kr/bbs/DownloadAttachment.aspx?fid=836&boardid=331301885'>첨부한 파일은 위의 예제 코드</a>를 포함합니다.)<br /> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
1795
(왼쪽의 숫자를 입력해야 합니다.)