包裝表示式
- 如果一行接近最大字元數限制,請始終考慮將其分解為多個語句/表示式而不是包裝該行。
- 在運算子之前休息
- 休息之前。在鏈式方法呼叫中。
popupMsg("Inbox notification: You have "
+ newMsgs + " new messages");
// Don't! Looks like two arguments
popupMsg("Inbox notification: You have " +
newMsgs + " new messages");