标签: c++ while-loop
所以我有这样的while循环:
while ( (ret1 == funct1 () ) == 0 && (ret2 == funct2 () ) != 1) { // do nothing }
是否会同时调用这两个函数?喜欢运行两个线程?感谢。