Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 203 Bytes

naming.md

File metadata and controls

12 lines (9 loc) · 203 Bytes

Naming

Unlike static fields, which get new socially accepted naming rules, you name static methods the same as any other method.

class Naming {
    static void nameLikeNormal() {

    }
}