提取循环中包含continue的语句封装成方法

demo如下:

        private void button1_Click(object sender, EventArgs e)
        {
            for(int i=0;i<10;i++)
            {
                if (!a(i)) 
                {
                    continue;
                }
                this.label1.Text += i.ToString()+"";
            }


        }
        public bool a(int i) 
        {
            if (i == 1)
            {
                return false;
            }
            else 
            {
                return true;
            }
        }

 

posted @ 2016-03-08 14:39  洛晨随风  阅读(460)  评论(0编辑  收藏  举报