정적 멤버 변수를 갖는 클래스를 상속할때 그 변수의 초기화 순서

jinserk의 이미지

안녕하세요?

c++ 에서 아래와 같이 A 클래스를 상속하는 B 클래스가 있습니다.

class A
{
   protected:
      static struct Member {
         int m_c;
         Member(int c) { m_c = c; }
      } a;
};
 
A::Member A::a(1);
 
class B : public A
{
   private:
     static struct ChildMember {
        int m_c;
        ChildMember(Member& r) { m_c = r.m_c; }
     } b;
};
 
B::ChildMember B::b(a);

개념은 위와 같은데, 저럴때 B::b 의 m_c 를 찍어보면 1이 아닌 이상한 값이 들어가 있네요.
아마도 정적 변수의 초기화 순서가 안지켜지는 듯 한데, 저런 경우 어떻게 초기화 순서를 정할 수 있을까요?

감사합니다.

jeongheumjo의 이미지

// static_member_test.cpp : Defines the entry point for the console application.
//
 
#include "stdafx.h"
#include <iostream>
 
class A
{
   protected:
      static struct Member {
         int m_c;
         Member(int c) { m_c = c; }
      } a;
};
 
A::Member A::a(1);
 
class B : public A
{
   private:
     static struct ChildMember {
        int m_c;
        ChildMember(Member& r) { m_c = r.m_c; }
     } b;
 
public:
	void printmc(void) {
		std::cout << b.m_c << std::endl;
	}
};
 
B::ChildMember B::b(a);
 
int _tmain(int argc, _TCHAR* argv[])
{
 
	B myB;
	myB.printmc();
 
	return 0;
}

정적 멤버 객체 초기화 방식은 저도 처음보네요.. 동작은 잘 되네요...

저는 C++ 에 대해서도 잘 알지는 못합니다. C++ 스펙에 근거한 설명까지 해드릴 정도는 못되네요...

Visual Studio 2008 입니다. Win32 Console Project 구요..

익명 사용자의 이미지

서로 다른 번역 단위에서 정의된 비지역 정적 객체들의 초기화 순서는 '정해져 있지 않다' 라고 나와있네요.

만약 A::Member A::a(1)과 B::ChildMember B::b(a)이 서로 다른 cpp파일에 있다면 A::a, B::b 초기화 순서는 정의되어있지 않은 셈이 됩니다.

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.