[완료]연산자 오버로딩과 MS 의 __try, __finally 구문

jeongheumjo의 이미지

윈도우의 __try, __finally 구문과 C++ 의 연산자 오버로딩 관련한 질문을 하고싶습니다.
윈도우 질문을 해서 죄송합니다... __;

연산자 오버로딩 관련해서 궁금한 점이 있습니다.
아래 클래스 MessengerTable 와 같은 배열을 크리티컬 섹션으로 관리하는 클래스를 만들었습니다.
그리고 배열클래스답게 인덱스 연산자 오버로딩을 하였습니다.

  class MessengerTable {
   Messenger    m_aMessenger[NUM_OF_WORKERS];
   CRITICAL_SECTION  m_hCSMSSNGR_A;
 
  public:
   MessengerTable(void)
   {
    InitializeCriticalSection( &m_hCSMSSNGR_A );
   }
 
   ~MessengerTable(void)
   {
    DeleteCriticalSection( &m_hCSMSSNGR_A );
   }
 
   Messenger& operator[](const int& _nIdx) {
    __try
    {
     EnterCriticalSection( &m_hCSMSSNGR_A );
     return m_aMessenger[_nIdx];
    }
    __finally
    {
     LeaveCriticalSection( &m_hCSMSSNGR_A );
    }
   }
 
  } theMessengerTable;
 
 

그런데 아래와 같이 오버로딩한 인덱스 연산자를 사용하려니 LeaveCriticalSection 이 수행되는 시점이 언제인지 알 수 없어져서... 이렇게 코딩해도 되는가 확인이 필요해졌습니다.

theMessengerTable[nIdx] = Messenger(pi.hProcess, nIdx);

C++ 과 MS 의 __try, __finally 구문을 잘 아시는 분께 도움을 요청합니다.

위처럼 대입연산을 했을 때 대입 구문이 마쳐지기 까지 동기화에 문제가 없을 까요?

klara의 이미지

MS의 그 구문은 잘 모르겠지만, 연산자 오버로딩이라고 다를거 없습니다.
모양만 다를뿐 일반 함수의 호출과 100% 동일합니다.
theMessengerTable[nIdx] = Messenger(pi.hProcess, nIdx);
라는 구문은 operator[]라는 이름의 함수를 호출합니다. 즉,
operator[](nIdx) = Messenger(pi.hProcess, nIdx);
라고 적은 것과 같습니다.

jeongheumjo의 이미지

대입연산은 함수 operator[](nIdx) 의 수행 이후에 이루어질 텐데, 함수 수행 이후에는 뮤택스 락이 풀린 다음이니까요...
감사합니다. ^^*

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.