真与假与c#,java中的不同之处

时间:2024-05-22 17:06:44

/************真与假************/
 /*C语言中:真(非0)、假(0)
 * Java、C#中:真(true)、假(false)
 * JavaScript中:真(非0、true、非null)、假(0、false、null)
 */
 var x,y,z;
 x=2;
 if(x){
  document.write("非0为真!");
  document.write("<br>"); 
 }
 y=true;
 if(y){
  document.write("true为真!");
  document.write("<br>"); 
 }
 z="abc";
 if(z){
  document.write("非null为真!");
  document.write("<br>"); 
 }