int m=20; while (m=0) m=m ;

int m=20; while (m=0) m=m ;这个循环怎么循环 ,不明白这的m=0代表什么

m=0????还是m==0?

m=0,这是将0赋值给m,while判断为0,循环不会执行

m=0是一个条件来的