- 论坛徽章:
- 0
|
1、我用string类型做为形参的时候,用gdb调试跟进调用函数,为什么会报下面的错误?
OverflowError: signed integer is greater than maximum
gdb调试时,无法打印该string变量内容,但是所有逻辑都可按预期的那样处理。
如果你赋值给另一个string ,则被赋值的变量可打印。
why??????why?????why??????
- //str = "abc"
- void test( string str )
- {
- string temp = str;
- //gdb 中p str无法正常打印
- //p temp可以正常打印
- return;
- }
复制代码 为什么 ? 为什么 ? 为什么 ?
2、
- #define GET_EIGHT_BITS(num, offset) (((num) >> ((offset) * 8)) & 0xff)
- char temp = 0;
- for( int n = 3; n >= 0 && GET_EIGHT_BITS(ascii, n) != 0; n-- )
- {
- sprintf( &temp, "%c", GET_EIGHT_BITS(ascii, n) );
- //使用下面这句,就不会有任何问题
- //temp = GET_EIGHT_BITS(ascii, n);
- }
复制代码 gdb调试,ascii = 0x37777777; n = 2;时
为什么执行sprintf之后ascii的值会变成0x37777700 ??????why why why
而其它语句对ascii没有影响。
sprintf里面有什么故事? |
|