我有这个看似无辜的代码。
String str = (String)convert.fromBytes(bytes);
我'cast' is not followed by whitespace.
从 checkstyle 中得到。所以我在后面加了一个空格(String)
,我得到了')' is followed by whitespace.
......
我玩过配置(发现其中许多可能涉及此)。过了一会儿,我对我所做的改变感到困惑(哈哈哈),但在类型转换后,我设法让 A SPACE 的警告消失了。但是,我不喜欢类型转换后没有空间。所以,谁能告诉我当我在类型案例后没有空格时要设置什么来删除警告。
编辑:
这是我第一次写的:
String str = (String)convert.fromBytes(bytes);
然后我得到
'cast' is not followed by whitespace.
.
所以我改为
String str = (String) convert.fromBytes(bytes);
然后我得到了
')' is followed by whitespace.
我想要的是在没有任何警告的情况下编写以下内容。
String str = (String)convert.fromBytes(bytes);
我应该设置什么选项?
PS 我在 Eclipse 中使用 CheckStyle 插件。
谢谢