#微碼分享#C++變參字串格式化函式format_string
在C和C++中,變參格式化函式雖然非型別安全,但卻十分便利,因為得到廣泛使用。對於常見的size_t型別要用“%zu”,ssize_t用”%zd“,int64_t用“% ”PRId64,uint64_t用“% ”PRIu64,long用"%ld",long long用"%lld",示例:
const int64_t datetime = INT64_C(20190124144930);
printf("datetime: %" PRId64"\n", datetime);
注意在PRId64前保留一個空格,以避免編譯警告
format_string原始碼連結:
https://github.com/eyjian/r3c/blob/master/utils.cpp
https://github.com/eyjian/libmooon/blob/master/src/utils/string_utils.cpp
format_string原始碼:
// snprintf()第2個引數的大小,要求包含結尾符'\0'
// snprintf()的返回值是期望大小,不包含結尾符'\0',
// 下面假設snprintf()的第二個引數值為10,則:
// 1) 當str為"abc"時,它的返回值的大小是3,"abc"的字元個數剛好是3;
// 2) 當str為"1234567890"時,它的返回值大小是10,"1234567890"的字元個數剛好是10;
// 3) 當str為"1234567890X"時,它的返回值大小是11,"1234567890X"的字元個數剛好是11。
//
// int asprintf(char **strp, const char *fmt, ...);
std::string format_string(const char* format, ...)
{
size_t size = 4096;
std::string buffer(size, '\0');
char* buffer_p = const_cast<char*>(buffer.data());
int expected = 0;
va_list ap;
while (true)
{
va_start(ap, format);
expected = vsnprintf(buffer_p, size, format, ap);
va_end(ap);
if (expected>-1 && expected<=static_cast<int>(size))
{
break;
}
else
{
/* Else try again with more space. */
if (expected > -1) /* glibc 2.1 */
size = static_cast<size_t>(expected + 1); /* precisely what is needed */
else /* glibc 2.0 */
size *= 2; /* twice the old size */
buffer.resize(size);
buffer_p = const_cast<char*>(buffer.data());
}
}
// expected不包含字串結尾符號,其值等於:strlen(buffer_p)
return std::string(buffer_p, expected>0?expected:0);
}
相關文章
- PHP函式,引數,可變參函式.PHP函式
- C語言中變參函式傳參探究C語言函式
- python函式每日一講 - format函式字串格式化入門Python函式ORM字串格式化
- Python中format函式字串格式化入門PythonORM函式字串格式化
- [譯] part 12: goalng 變參函式Go函式
- 轉 Lua標準庫: table函式, 數學函式, 字串函式/格式化/配對,函式字串
- python強大的字串格式化函式 - formatPython字串格式化函式ORM
- C++分割字串,及strtok函式使用C++字串函式
- c++字串查詢函式實現C++字串函式
- 兄弟連go教程(12)函式 - 變參Go函式
- [C]可變參量,debugprint函式函式
- C++ 函式的可變引數C++函式
- mysql和oracle字串編碼轉換函式,字串轉位元組函式例子MySqlOracle字串編碼函式
- #微碼分享#AES演算法的C++包裝類演算法C++
- 飄逸的python - 增強的格式化字串format函式Python字串ORM函式
- 字串函式之Strtok()函式字串函式
- C++ 字串截斷的實現(基礎函式)C++字串函式
- 格式化字串漏洞沉浸式理解字串
- 笨辦法學C 練習25:變參函式函式
- 再學Java 之 形參個數可變函式Java函式
- C++(STL原始碼):37---仿函式(函式物件)原始碼剖析C++原始碼函式物件
- [提問交流]分享一個擷取字串的函式字串函式
- MySQL(四)日期函式 NULL函式 字串函式MySql函式Null字串
- 字串函式 fprintf ()字串函式
- 字串函式 htmlentities ()字串函式HTML
- 字串函式 htmlspecialchars ()字串函式HTML
- 字串函式 implode ()字串函式
- 字串函式 explode ()字串函式
- 字串函式 lcfirst ()字串函式
- 字串函式 levenshtein ()字串函式
- 字串函式 ltrim ()字串函式
- 字串函式 metaphone ()字串函式
- 字串函式 print ()字串函式
- Oracle 字串函式Oracle字串函式
- Oracle 字串函式Oracle字串函式
- 字串函式 ord ()字串函式
- PHP字串函式PHP字串函式
- Oracle字串函式Oracle字串函式