0
我有這樣的代碼:C#繼續/轉到基本查詢
main()
{
for(i=0;i<100;i++)
{
if(cond1)
func(1); //Just some logics are present here
if (cond2)
if(cond3 | cond4)
func(2);
and so on....
}
}
void func(int)
{
do somthing;
if cond5
continue;// this is for the FOR loop in main() & I know this doesnt make sense.
}
因此,根據在功能「功能」一些IF條件,我想「繼續」 FOR環路出現在主要的( )。如何實現這一目標? 在此先感謝...
很好的答案,但你可能已經增加了大約你如何改變(改善)的programflow一些文本。 – 2009-11-08 17:06:45
感謝您的提示。 – Oleg 2009-11-08 18:22:43