问题描述
if(P_int_current==0||P_int_current>20)这句如何理解?=======================================================protectedvoidbtnSend_Click(objectsender,EventArgse){intP_int_current=Convert.ToInt32(Application["current"]);Application.Lock();if(P_int_current==0||P_int_current>20){P_int_current=0;Application["chats"]=Session["userName"].ToString()+"说:"+txtMessage.Text.Trim()+"("+DateTime.Now.ToString()+")";}else{Application["chats"]=Application["chats"].ToString()+","+Session["userName"].ToString()+"说:"+txtMessage.Text.Trim()+"("+DateTime.Now.ToString()+")";}P_int_current+=1;Application["current"]=P_int_current;Application.UnLock();}
解决方案
解决方案二:
当P_int_current变量的值等于0或者大于20
解决方案三:
当这个变量是0或大于20(如21,22……)时,执行if{这里的语句}
解决方案四:
P_int_current==0||P_int_current>20P_int_current这个变量等于0,或者P_int_current大于20,满足其中一个条件则这个式子为true,为true则执行if里面的语句
解决方案五:
当这个变量是0或大于20(如21,22……)时,执行if{这里的语句}