[완료]문자열을 구조체 변수의 포인터에 대입하려 하는데, 잘 안되네요.

dltkddyd의 이미지

Paragraph라는 구조체 타입으로 group을 만들었습니다. 그리고 구조체의 멤버 sen 포인터에 문자열의 주소를 대입하려 했으나 두 번째에서 잘 안되네요. 대입이 제대로 됐는지 검증하려고 루프를 돌릴 때 확인해보면 (group+1)의 sen 포인터에 "Welcome"의 주소가 대입된 채로 그대로인데요. "to"의 주소가 대입돼야 하는데 말입니다.

#include
#include
#include
using namespace std;

struct Paragraph {
int senS;
int senE;
char *sen;
int wS;
int wE;
};

int main() {
Paragraph *group;
int length=2;
group=(Paragraph*)malloc(length*sizeof(Paragraph));
group->senS=0;
group->senE=9;

group->sen=(char*)malloc(100);
group->sen=(char*)"Welcome";
//strcpy(group->sentence,"Welcome");
group->wS=4;
group->wE=6;
(group+1)->senS=10;
(group+1)->senE=19;
(group+1)->sen=(char*)malloc(100);
(group+1)->sen=(char*)"to";
//strcpy((group+1)->sentence,"to");
(group+1)->wS=12;
(group+1)->wE=14;
for(int i=0;i cout<<"group "<senS< cout<<"group "<senE< cout<<"group "<sen)< cout<<"group "<wS< cout<<"group "<wE< }

delete[] group;
return 0;
}

익명 사용자의 이미지

Paragraph **group = malloc(length*sizeof(Paragraph*));

group[0] = malloc(sizeof(Paragraph));
group[0]->sen = "Welcome";

group[1] = malloc(sizeof(Paragraph));
group[1]->sen = "to";

dltkddyd의 이미지

제 생각으로는 이중포인터를 사용할 필요는 없을 것 같은데요. 단일포인터 group이 가리키는 대상체를 그 구조체 단위로 쪼개면 되는 것이라 보이는데요. 이중포인터를 사용하신 이유는 뭔가요?

본인 맞습니다.
인증샷
우헤헤헤... 로 대신합니다.

dltkddyd의 이미지

정말 궁금한 것은 sen 멤버에 어떻게 문자열을 집어넣느냐는 것입니다. 단일 포인터에서 다른 멤버에는 값 제대로 들어갑니다.

본인 맞습니다.
인증샷
우헤헤헤... 로 대신합니다.

dltkddyd의 이미지

단일포인터로 되는거였네요. 출력되는 부분에서 문제가 있었습니다.

내가 보는 게 보는 게 아니야... 우우우...

본인 맞습니다.
인증샷
우헤헤헤... 로 대신합니다.

ymir의 이미지

group->sen=(char*)malloc(100);
group->sen=(char*)"Welcome";

group->sen 에 malloc 을 하고, 문자열의 포인터를 대입해 버리면 malloc 한 메모리는 공중에 붕 떠버리고 leak 이 됩니다.
malloc 을 했으면 strcpy 등의 함수를 써서 문자열을 복사해 주면 되고..
const char * 를 assign 하는 경우에는 malloc 을 빼야 합니다.

되면 한다! / feel no sorrow, feel no pain, feel no hurt, there's nothing gained.. only love will then remain.. 『 Mizz 』

dltkddyd의 이미지

문제 해결됐습니다.

본인 맞습니다.
인증샷
우헤헤헤... 로 대신합니다.

댓글 달기

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