%x 默认去掉前导零
#include<stdint.h> #include<stdio.h> union X { int32_t a; struct { int16_t b; int16_t c; }; }; int main(){ X x; x.a=0x20150810; printf("%x,%x\n",x.b,x.c); return 0; }
正确答案
交换机在同一时刻可进行多个端口对之间的数据传输。每一端口都可视为独立的网段,连接在其上的网络设备独自享有全部的带宽,无须同其他设备竞争使用。当节点A向节点D发送数据时,节点B可同时向节点C发送数据,而且这两个传输都享有网络的全部带宽,都有着自己的虚拟连接。假使这里使用的是10Mbps的以太网交换机,那么该交换机这时的总流通量就等于2×10Mbps=20Mbps。
#include<iostream>
using
namespace
std;
int
i=1;
class
MyCls{
public
:
MyCls():m_nFor(m_nThd),m_nSec(i++),m_nFir(i++),m_nThd(i++){
m_nThd=i;
}
void
echo(){
cout<<
"result:"
<<m_nFir+m_nSec+m_nThd+m_nFor<<endl;
private
m_nFir;
m_nSec;
m_nThd;
&m_nFor;
};
main()
{
MyCls oCls;
oCls.echo();
return
0;