包装表达式

  • 如果一行接近最大字符数限制,请始终考虑将其分解为多个语句/表达式而不是包装该行。
  • 在运算符之前休息
  • 休息之前。在链式方法调用中。
popupMsg("Inbox notification: You have "
        + newMsgs + " new messages");

// Don't! Looks like two arguments
popupMsg("Inbox notification: You have " +
         newMsgs + " new messages");