在用Latex写中文大论文时,编译后,用Yap查看DVI文件,打开时,Yap报错: "Not all fonts could be loaded. See 'File->Document Properties', for details." 点击“确定”之后,发现并不影响DVI文件的查看,但是仔细检查一下,会发现生成的DVI文件中,会有极个别的汉字没有显示,直接是一个空格在相应的位置上代替. 按照错误提示,我打开了Yap中的File->document p
一个例子 public class TestString{ public static void main(String[] args){ String a = "a"; String b = a+"b"; String c = "ab"; String d = "a" + "b"; System.out.println(c == d); //true!!!! System.out.println(c ==