++i,i++

xiaoxiao2021-02-28  139

a= i++; 则相当于 a=i;i=i+1; a=++i; 则相当于 i=i+1;a=i;

转载请注明原文地址: https://www.6miu.com/read-18170.html

最新回复(0)