-4
您可以共享JLS/JEP或其他Oracle/Twitter/Google java代碼樣式約定文檔,其中聲明瞭類元素的位置。 像:Java代碼風格:內部職位
class Example {
// public static final variables
// private static final variables
// static variables
// class variables
// constructors
// public methods
// protected methods
// inner classes
// nested classes
// static methods
// setter1
// getter1
//...
// setterN
// getterN
}
https://google.github.io/styleguide/javaguide.html – Ishnark
Google提供了一個用於查找此信息的絕佳工具。 – bradimus
這裏:https://google.github.io/styleguide/javaguide.html#s3.4.2-ordering-class-contents Google寫道,該類內容排序沒有強烈聲明。這是答案嗎? –