目录
1. 巡检命令
2. License查看
总结 1. 巡检命令
terminal length 0
show version detail
show clock
show environment
show inventory
show module
show session generic detail
show cpu
show cpu detail
show memory
show memory detail
show ip route
show arp
sho…
1、将整数常量转换为浮点数:
int a (float)5; // 实际上这里会有警告或错误,因为不能直接将int赋值给int变量通过float转换
float b (float)5; // 正确,将整数5转换为浮点数5.0 2、将字符常量转换为整数
int c (int)A; // 将字符A转换为…