Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 207 Bytes

declaration.md

File metadata and controls

12 lines (10 loc) · 207 Bytes

Declaration

Same as static fields, to mark a method as static you write the word static before it.

class MyMath {
    static int add(int a, int b) {
        return a + b;
    }
}