作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我只是想用Javas printf 方法测试一些东西。自从我上次使用它以来已经有一段时间了,所以也许这现在是正常行为。
此代码是取自 http://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html 的示例和维基百科。
问题是,它不会运行。
import java.util.Calendar;
public class TestPrintf {
public static void main(String[] args) {
System.out.printf("%s, %s", "Hello", "World!");
// Writes a formatted string to System.out.
System.out.format("Local time: %tT", Calendar.getInstance());
// -> "Local time: 13:34:18"
}
}
导致
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
The method printf(Locale, String, Object[]) in the type PrintStream is not applicable for the arguments (String, String, String)
The method format(String, Object[]) in the type PrintStream is not applicable for the arguments (String, Calendar)
at TestPrintf.main(TestPrintf.java:7)
我在 Ubuntu 上使用 Eclipse 版本:Mars.2 Release (4.5.2),Java 版本为 1.8.0_74。
我知道它曾经是这样工作的,但现在我必须提供一个包含变量的数组?如果我想格式化字符串和整数的混合格式怎么办?现在真的不需要混合类型的 Object[] 吗?
如果能了解为什么需要/改变这一点,我们将不胜感激。
最佳答案
我建议您检查项目中的编译器合规性级别是否设置为 1.5 或更高。
参见this问题以获取有关如何执行此操作的解释。
关于Java system.out.format 想要 Object[] 数组而不是简单的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36014460/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!