这个人很懒,暂无签名信息
java移位运算符不外乎就这三种:(带符号右移)和>>>(无符号右移)。 1、 左移运算符左移运算符它的通用格式如下所示:value >>> numnum 指定要移位值value 移动的位数。无符号右移的规则只记住一点:忽略了符号位扩展,0补最高位无符号右移运算符>>> 只是对32位和64位的值有意义
public class Main { public static void main(String arg[]){ File file=new File(E:/TEST.TXT); if (!file.exists()) { try { file.createNewFile(); } catch (IOException e) { ...