중복 가져오기

이 경고 카테고리의 철자는 [duplicate-import] 입니다.

중복 가져오기

무슨 일인가요?

문서에 중복 가져오기 문이 포함되어 있습니다.

왜 나쁜가요?

문서를 불필요하게 오염시키고 앱 시작 속도를 늦출 수 있습니다.

예시

import QtQuick.Controls
import QtQuick
import QtQuick 2.1 as QQ21
import QtQuick.Controls

Item {

}

이 경고를 해결하려면 마지막 중복 가져오기를 제외한 모든 가져오기 문을 제거하세요. 가져오기 순서는 유형 해상도에 영향을 줄 수 있으므로 변경하지 않도록 주의하세요:

import QtQuick
import QtQuick 2.1 as QQ21 // different from the previous import
import QtQuick.Controls

Item {

}

© 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.