CStringList::RemoveAll 是 MFC(Microsoft Foundation Classes)中 CStringList 类的一个公共方法,用于移除列表中的所有元素。
void RemoveAll();

该方法会清空整个列表,使其不包含任何元素。

以下是一个简单的示例,演示如何使用 RemoveAll 方法:
#include <afx.h> // 包含 MFC 头文件

int main() {
    // 创建一个 CStringList 对象
    CStringList stringList;

    // 在列表中添加一些元素
    stringList.AddTail(_T("Element1"));
    stringList.AddTail(_T("Element2"));
    stringList.AddTail(_T("Element3"));

    // 输出原始列表内容
    _tprintf(_T("Original List:\n"));
    POSITION pos = stringList.GetHeadPosition();
    while (pos != NULL) {
        CString element = stringList.GetAt(pos);
        _tprintf(_T("Element: %s\n"), element);
        stringList.GetNext(pos);
    }

    // 使用 RemoveAll 移除所有元素
    stringList.RemoveAll();

    // 输出移除后的列表内容
    _tprintf(_T("List after RemoveAll:\n"));
    pos = stringList.GetHeadPosition();
    while (pos != NULL) {
        CString element = stringList.GetAt(pos);
        _tprintf(_T("Element: %s\n"), element);
        stringList.GetNext(pos);
    }

    return 0;
}

此示例演示了如何使用 RemoveAll 方法来清空列表。请注意,实际应用中可能需要根据具体情况做更多处理。


转载请注明出处:http://www.zyzy.cn/article/detail/22574/MFC/CStringList