O owner001 Unregistered / Unconfirmed GUEST, unregistred user! 2006-09-27 #1 我不想使用太多的if语句,所以我想问Delphi中有没有switch语句,如果有的话,怎么用呢?我是一个超级菜鸟,这个问题实在是太菜了,大家不要笑啊
A Avalon Unregistered / Unconfirmed GUEST, unregistred user! 2006-09-27 #2 case I of 1..5: Caption := 'Low'; 6..9: Caption := 'High'; 0, 10..99: Caption := 'Out of range'; else Caption := ''; end;
case I of 1..5: Caption := 'Low'; 6..9: Caption := 'High'; 0, 10..99: Caption := 'Out of range'; else Caption := ''; end;