An interface defines a protocol of behavior and not how we should be implemented. 實作介面的類別遵循該介面定義的協定。
interface interfaceName{ // Any number of final, static variables datatype variableName = value; // Any number of abstract method declarations returntype methodName(list of parameters or no parameters); }
以上是為什麼Java中的介面變數預設是靜態和最終的?的詳細內容。更多資訊請關注PHP中文網其他相關文章!