«nodes» 태그된 질문




5
NULL이 선언되지 않은 이유는 무엇입니까?
이 코드를 컴파일하려고 할 때이 구조체 생성자에 문제가 있습니다. typedef struct Node { Node( int data ) // { this->data = data; previous = NULL; // Compiler indicates here next = NULL; } int data; Node* previous; Node* next; } NODE; 내가 올 때이 오류가 발생합니다. \linkedlist\linkedlist.h||In constructor `Node::Node(int)':| \linkedlist\linkedlist.h|9|error: …
87 c++  syntax  nodes 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.