共用方式為


ctype::do_tolower

呼叫虛擬函式轉換字元的範圍為小寫。

virtual CharType do_tolower(
    CharType ch
) const;
virtual const CharType *do_tolower(
    CharType* first, 
    const CharType* last
) const;

參數

  • ch
    要轉換的字元轉換為小寫。

  • first
    對第一個字元的指標會案例要轉換的字元範圍內。

  • last
    對字元的指標會在這種情況下要轉換的字元範圍內的最後一個字元之後。

傳回值

第一個受保護的成員函式傳回 ch參數的小寫形式。 如果小寫表單不存在,則傳回 ch。 第二個受保護的成員函式會傳回 last。

備註

第二個受保護的成員樣板函式是 do_tolower(first [I] 取代 I 的每個項目的 first [I],在間隔 [0, last ( first),)。

範例

請參閱 tolower範例,呼叫 do_tolower

需求

標題: <地區設定>

命名空間: std

請參閱

參考

ctype 類別