c语言中'vtable啥意思...

来源:百度知道 编辑:UC知道 时间:2024/06/17 05:30:20
[Practice] //1int a,b;
short int c;
short d=100;
a=d-20;
b=a+d;
c=a+b+d;
d=d-a+c-b;'Vtable
a,2,0
b,2,0
c,2,0
d,2,100
of Vtable
'Vupdate
1,0;2,0
3,0
4,100
1,80
2,180
3,360
4,200
of Vupdate
of Practice

这段啥意思,我没找到注解......还忘各位大人逐句帮忙解释下

[Practice] //1int a,b;
short int c;
short d=100;
a=d-20; 80
b=a+d; 180
c=a+b+d; 360
d=d-a+c-b;'Vtable 200
a,2,0
b,2,0
c,2,0
d,2,100
of Vtable 输出格式
'Vupdate 输出刷新
1,0;2,0
3,0
4,100
1,80
2,180
3,360
4,200
of Vupdate
of Practice