共用方式為


ctype::do_scan_not

呼叫的虛擬函式尋找第一個字元不符合指定的遮罩的範圍。

virtual const CharType *do_scan_not(
    mask maskVal, 
    const CharType* first, 
    const CharType* last,
) const;

參數

  • maskVal
    比對字元的遮罩值。

  • first
    第一個字元的指標會掃描的範圍。

  • last
    對應至字元的指標在要掃描的範圍中的最後一個字元之後。

傳回值

第一個字元的指標在不符合指定的遮罩的範圍。 如果這個值不存在,則函式會傳回 last。

備註

受保護的成員函式傳回介於[first的最小 ptr 指標, last) do_is(maskVal, *ptr)是錯誤的。

範例

scan_not"範例"一節,呼叫 do_scan_not

需求

標題: <locale>

命名空間: std

請參閱

參考

ctype Class