snprintf()函数返回值“陷阱”

【小蜗牛清心之作
 
我最近优化一个Linux-C小程序,用snprintf()函数往数组(或字符串)里写入数据。我不用sprintf()是因为它不够安全,不小心就会内存溢出,导致“段错误”!我认识并使用snprintf()很久了,但今天才完全明白了它的返回值的意思。
 
函数原型:
int snprintf(char *str, size_t size, const char *format, ...);
 
size 的作用就是限制往str写入不超过size个字节(包括了结尾的'\0')。
因为sprintf()函数如果成功的话,返回成功写入的字节数(字符数),我就一直以为snprintf()函数也是如此,也就是snprintf()函数不会返回大于size的整数。
 
看下面一段手册内容:
 
The functions snprintf() and vsnprintf() do not  write  more than size bytes (including the trailing ’\0’). If the output was truncated due to this limit then the return value is the number of  characters (not including the trailing ’\0’) which would have been written to the final string if enough space had been  available.  Thus,  a  return value  of  size  or more means that the output was truncated.
 
如果输出因为size的限制而被截断,返回值将是“如果有足够空间存储,所 能输出的字符数(不包括字符串结尾的'\0')”,这个值和size相等或者比size大!也就是说,如果可以写入的字符串是 "0123456789ABCDEF"共16位,但是size限制了是10,这样 snprintf() 的返回值将会是 16 而不是 10!
 
上面的内容还说,如果返回值等于或者大于size,则表明输出字符串被截断了(truncated)。
 
各位~注意啦~
 
------------------------------------------------------------------------------------------
赵小蜗牛
QQ: 755721501
E-mail:  [email protected]
在不断奉献中谋求生存发展、打造自己的优秀品质,用人性最本质最动人的一面“营销”自己!

你可能感兴趣的:(编程,c,linux,职场,休闲)