get length of `wchar_t*` in c++

后端 未结 2 1543
遥遥无期
遥遥无期 2021-02-05 02:00

Please, how can I find out the length of a variable of type wchar_t* in c++?

code example below:

wchar_t* dimObjPrefix = L\"retro_\";
         


        
2条回答
  •  广开言路
    2021-02-05 02:42

    Assuming that you want to get the length of null terminated C style string, you have two options:

    1. #include and use std::wcslen (dimObjPrefix);,
    2. or #include and use std::char_traits::length (dimObjPrefix);.

提交回复
热议问题