delphi中有没有switch呀?(10分)

  • 主题发起人 主题发起人 owner001
  • 开始时间 开始时间
O

owner001

Unregistered / Unconfirmed
GUEST, unregistred user!
我不想使用太多的if语句,所以我想问Delphi中有没有switch语句,如果有的话,怎么用呢?我是一个超级菜鸟,这个问题实在是太菜了,大家不要笑啊
 
case I of
1..5: Caption := 'Low';
6..9: Caption := 'High';
0, 10..99: Caption := 'Out of range';
else
Caption := '';
end;
 
问题已经解决,谢谢Avalon大虾。
 
后退
顶部