所以我正在使用Eclipse为学校做一个项目。我不断在令牌“+”上获得语法错误,预期++。
System.out.print ("End of Supplier transactions");
calcsuppliersummary();
System.out.print("The total interest of"+name+"is:" +interest+);
System.out.print("The supplier Ending Balance is:"+endbal+ );
}
错误显示在System.out.print行。
答案 0 :(得分:1)
+
和interest
末尾的endbal
使编译器认为之后会添加某些内容。如果它是您要打印的内容的结尾,则最后不需要+
。就像你不会写2 + 2 + = 4(但你写2 + 2 = 4),你写"The supplier Ending Balance is:"+endbal
而不是"The supplier Ending Balance is:"+endbal+
。
希望这有帮助!
顺便问一下,你是Java新手吗?如果是这样的话,那里有一些非常好的书籍让它变得非常容易学习:)。