stl을 이용한 2차원 배열의 구현

sculd2의 이미지

구글에서 2차원 array 비슷한 키워드로 검색을 해 봤더니 MSDN페이지에서 좋은 예제를 발견할 수 있었습니다.

http://msdn.microsoft.com/archive/default.asp?url=/archive/en-us/dnaraskdr/html/askgui04162002.asp

#include
using namespace std;

template
class C2DVector
{
public:
C2DVector():m_dimRow(0), m_dimCol(0){;}
C2DVector(int nRow, int nCol) {
m_dimRow = nRow;
m_dimCol = nCol;
for (int i=0; i < nRow; i++){
vector x(nCol);
int y = x.size();
m_2DVector.push_back(x);
}
}
void SetAt(int nRow, int nCol, const T& value) throw(std::out_of_range) {
if(nRow >= m_dimRow || nCol >= m_dimCol)
throw out_of_range("Array out of bound");
else
m_2DVector[nRow][nCol] = value;
}
T GetAt(int nRow, int nCol) {
if(nRow >= m_dimRow || nCol >= m_dimCol)
throw out_of_range("Array out of bound");
else
return m_2DVector[nRow][nCol];
}
void GrowRow(int newSize) {
if (newSize <= m_dimRow)
return;
m_dimRow = newSize;
for(int i = 0 ; i < newSize - m_dimCol; i++) {
vector x(m_dimRow);
m_2DVector.push_back(x);
}
}
void GrowCol(int newSize) {
if(newSize <= m_dimCol)
return;
m_dimCol = newSize;
for (int i=0; i m_2DVector[i].resize(newSize);
}
vector& operator[](int x) {
return m_2DVector[x];
}
private:
vector< vector > m_2DVector;
unsigned int m_dimRow;
unsigned int m_dimCol;
};

////////////////////////////////////////////////////////////

-여기서 가장 궁금한 점은
void GrowRow(int newSize) {
if (newSize <= m_dimRow)
return;
m_dimRow = newSize;
for(int i = 0 ; i < newSize - m_dimCol; i++) {
vector x(m_dimRow);
m_2DVector.push_back(x);
}
}
여기서 for 구문안에서 vector x를 지역변수로 선언하는데, 이것들은 for loop의 블럭안에서만 유효하기 때문에 저런 식으로 m_2DVector에 집어넣은 다음에 나중에 참조하려고 하면 안되지 않나요? 어떻게 저 코드가 제대로 작동할 수 있는 지 궁금합니다.

그리고 이 코드는 Visual Studio에서의 구문에 따라서 정의가 되어 있는 듯 합니다. 제가 Visual Studio를 별로 안써봐서 몇 가지 구문이 이해가 안가는 점이 있습니다. 그대로 gcc컴파일러에서 돌려보니 몇 가지 에러가 나는 구문이 있더군요.

-void SetAt(int nRow, int nCol, const T& value) throw(std::out_of_range) {
에서처럼 함수 프로토 이름 다음에 throw구문을 써 주는 것이 무슨 의미인지 모르겠습니다.

-그리고 표준 c++에서는 throw "Array out of bound"; 이런 식으로 throw를 날려주는 것으로 알고 있는 데 반해, 이 예제에서는 throw out_of_range("Array out of bound"); 처럼 out_of_range(값) 이런 식으로 써 줬는데요, 이게 무슨 의미인지 궁금합니다.

klara의 이미지

참조(reference)가 아닙니다.

stl의 기본은 모두 '복사'하도록 되어있습니다.

push_back(x)하면 x의 참조가 넘어가는게 아니라 x를 복사해서 컨테이너에 넣기 때문에 원본 x가 사라지더라도 전혀 상관없습니다.

kaeri17의 이미지

이 함수에서 어떠한 예외가 발생될수 있다는 것을 컴파일러에게 알려주는 것이죠. 아무것도 쓰지 않으면 어떠한 예외도 발생가능하는것이고요

throw out_of_range("Array out of bound"); 이건 out_of_range라는 예외를 생성자로 만든 다음 예외를 전달하는 겁니다.

예외지정과 예외의 전달 방식이 MEC++ 몇장인가에 꽤나 상세히 나온것으로 기억되네요

댓글 달기

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