#微碼分享#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);
}
相關文章
- python函式每日一講 - format函式字串格式化入門Python函式ORM字串格式化
- Python中format函式字串格式化入門PythonORM函式字串格式化
- C語言中變參函式傳參探究C語言函式
- C++分割字串,及strtok函式使用C++字串函式
- c++字串查詢函式實現C++字串函式
- [譯] part 12: goalng 變參函式Go函式
- [C]可變參量,debugprint函式函式
- 兄弟連go教程(12)函式 - 變參Go函式
- C++(STL原始碼):37---仿函式(函式物件)原始碼剖析C++原始碼函式物件
- MySQL(四)日期函式 NULL函式 字串函式MySql函式Null字串
- 格式化字串漏洞沉浸式理解字串
- c++一些常見的內建函式(字串)C++函式字串
- Oracle 字串函式Oracle字串函式
- Oracle 字串函式Oracle字串函式
- 字串函式 metaphone ()字串函式
- 字串函式 print ()字串函式
- 字串函式 explode ()字串函式
- 字串函式 ord ()字串函式
- 字串函式 ltrim ()字串函式
- 字串函式 levenshtein ()字串函式
- 字串函式 lcfirst ()字串函式
- 字串函式 implode ()字串函式
- 字串函式 fprintf ()字串函式
- 字串函式 htmlentities ()字串函式HTML
- 字串函式 htmlspecialchars ()字串函式HTML
- PHP字串函式PHP字串函式
- 笨辦法學C 練習25:變參函式函式
- [提問交流]分享一個擷取字串的函式字串函式
- MySQL 字串函式:字串擷取MySql字串函式
- C++函式C++函式
- PHP 每日一函式 — 字串函式 crypt ()PHP函式字串
- PHP 每日一函式 — 字串函式 chr ()PHP函式字串
- PHP 每日一函式 — 字串函式 addslashes ()PHP函式字串
- PHP 每日一函式 — 字串函式 addcslashes ()PHP函式字串
- MySQL函式學習(一)-----字串函式MySql函式字串
- T-SQL——函式——字串操作函式SQL函式字串
- MySQL函式大全(字串函式,數學函式,日期函式,系統級函式,聚合函式)MySql函式字串
- Lesson12——NumPy 字串函式之 Part1:字串操作函式字串函式