void method(Set<String> whiteListProviders){
HashSet<String> hashedWhitelistedProviders;
HashSet<String> fdsfh = (hashedWhitelistedProviders = (HashSet<String>) whitelistedProviders);
HashSet<String> ghjk = (hashedWhitelistedProviders = new HashSet<String>(whitelistedProviders));
HashSet<String> gh4jk = true ? fdsfh : ghjk; //compiles
true?fdsfh:ghjk; //gives error "Type mismatch: cannot convert from HashSet<String> to boolean"
}
我看了http://docs.oracle.com/javase/specs/jls/se7/html/jls-15.html#jls-15.25 但仍然无法理解为什么它会在eclipse中给出编译错误
答案 0 :(得分:5)
Java只允许在需要语句的地方进行赋值和调用,而不是任意表达式。
来自14.8 of the JLS部分:
某些类型的表达式可以通过以分号跟随它们来用作语句:
ExpressionStatement: StatementExpression ; StatementExpression: Assignment PreIncrementExpression PreDecrementExpression PostIncrementExpression PostDecrementExpression MethodInvocation ClassInstanceCreationExpression
三元运算符(ConditionalExpression
)不在该列表中,因此除了作为较大表达式或初始值设定项的一部分外,它不会出现。