使用此代码段:
thread 1:
send message A.1 to client
context switch
thread 2:
send message B.1 to client
recv message A.2 from client
context switch
thread 1:
recv message B.2 from client
为什么是结果
a = 9
答案 0 :(得分:12)
011
是八进制值,其十进制等效值为9.前面带有0
的整数文字表示八进制值。
使用%o
中的printf
说明符以八进制打印值。
答案 1 :(得分:10)
答案 2 :(得分:7)
在数字文字的开头使用0
,指定八进制系统。八进制系统中的11
为1*8 + 1 = 9
。