QDomComment Class
QDomComment 클래스는 XML 주석을 나타냅니다. 더 보기...
Header: | #include <QDomComment> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS Xml) target_link_libraries(mytarget PRIVATE Qt6::Xml) |
qmake: | QT += xml |
상속합니다: | QDomCharacterData |
- 상속된 멤버를 포함한 모든 멤버의 목록
- QDomComment는 XML 클래스의 일부입니다.
참고: 이 클래스의 모든 함수는 재진입합니다.
공용 함수
QDomComment() | |
QDomComment(const QDomComment &comment) | |
QDomNode::NodeType | nodeType() const |
QDomComment & | operator=(const QDomComment &other) |
상세 설명
다음과 같이 파싱된 XML의 주석입니다:
<!-- this is a comment -->
와 같은 주석은 구문 분석된 Dom 트리에서 QDomComment 객체로 표시됩니다.
문서 객체 모델에 대한 자세한 내용은 레벨 1 및 레벨 2 코어를 참조하세요. DOM 구현에 대한 보다 일반적인 소개는 QDomDocument 문서를 참조하세요.
멤버 함수 문서
QDomComment::QDomComment()
빈 댓글을 작성합니다. 콘텐츠가 포함된 댓글을 작성하려면 QDomDocument::createComment() 함수를 사용합니다.
QDomComment::QDomComment(const QDomComment &comment)
comment 의 복사본을 생성합니다.
사본의 데이터는 공유됩니다(얕은 사본): 한 노드를 수정하면 다른 노드도 변경됩니다. 심층 복사본을 만들려면 cloneNode()를 사용합니다.
QDomNode::NodeType QDomComment::nodeType() const
반환값 CommentNode
.
QDomComment &QDomComment::operator=(const QDomComment &other)
이 DOM 주석에 other 을 할당합니다.
복사본의 데이터는 공유됩니다(얕은 복사본): 한 노드를 수정하면 다른 노드도 변경됩니다. 심층 복사본을 만들려면 cloneNode()를 사용합니다.
© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.