[완료] 배열의 내용이 변경되지 않게 하려면 어떻게 하나요?

hugeval의 이미지

class ARRAY{
....
int arr[MAX];
};

void func(const ARRAY* array)
{
// 여기서 array.arr 배열의 내용을 변경하지 않게하려면 어떻게 하나요?
}

int main(void)
{
ARRAY array;
...
// array 배열 설정
...

func(&array);

...
...

return 0;
}

// func 매개변수 타입을 위처럼 하면되나요? 위처럼 했는데 변경되더라구요
// 그리고 포인터로 받아서 그런지 ARRAY 객체의 연산자오버로딩도 안되는것같고..
// 매개변수로 전달받은 객체내의 배열을 변경하지 않게 하려면 어떻게 해야하나요?ㅠㅠ

coderheart의 이미지

func(const ARRAY* array)
로 설정하셨는데 array 내부가 변경된다고요?
더 자세한 소스를 볼 수 있을까요?
(제가 변경된다는 것의 의도를 잘못파악한 것일 수도 있겠네요.
저렇게 선언되어있어도 억지로 수정하게 하는 방법(const_cast의 사용)도 있긴 있습니다만.
그런 방법을 쓰신 것은 아닐 것 같아서요)

글고 연산자 오버로딩 함수도 객체 함수기 때문에
만약 오버로딩을 했다면 func 내에서 array 가 포인터 타입인 경우
(*array)[5] 이런식으로 사용하시면 될 겁니다.
아니면
func(const ARRAY& array)
와 같이 레퍼런스 타입으로 받아주시면
array[5] 와 같이 쓰는 것도 가능합니다.
그리고 main 에서는
func(array)
형식으로 호출해야겠지요.

coderheart의 이미지

변경했다는 말씀이 제 생각이 맞다면(즉, func 내에서 일반적인 방법으로 수정)
즉, 아래와 같이 작성한다면 수정이 가능하지 않습니다.
혹시 다른 의도로 질문을 하신 건지도 모르겠네요.

class ARRAY
{
public:
int arr[100];
void ha() { arr[0] = 100; }
};

void func(const ARRAY* array)
{
array->arr[0] = 10;
//array->ha();
}

int _tmain(int argc, _TCHAR* argv[])
{
ARRAY array;
func(&array);
return 0;
}

hugeval의 이미지

첨에 레퍼런스 썼다가
배열의 내용이 변경되지 않게 하기 위해
const ARRAY* array 와 같이 했거든여
어제 집에서 했을때는 변경이 되었는데
올려주신 코드 돌려보니 변경이 안되는군요
집에서 해본 코드가 뭔가 문제가 있는것같네요
다시 살펴봐야겠습니다
답변감사합니다~^^

댓글 달기

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