Why is the keyword static used while declaring methods? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

Why is the keyword static used while declaring methods?

1st Jul 2019, 4:26 PM
Sai Kumar
3 ответов
+ 6
You want some functionality of class but you don't need to make object, it will cost you unnecessary memory and in bigger programs slower execution, that's when you use static
1st Jul 2019, 4:31 PM
Elva
Elva - avatar
+ 5
Because they belong to a class rather than an object. Example: public Class Program{ public static int getOne (){ return 1; } public int getTwo() { return 2; } public static void main(String[] args) { getOne(); //doesn't need an object because it's static Program x = new Program(); x.getTwo(); // we needed to create object x because method wasn't static } }
1st Jul 2019, 4:34 PM
HNNX 🐿
HNNX 🐿 - avatar
+ 3
You use static keyword simply to declare a method to be static. When you define objects using constructors, the objects will automatically inherit the methods from their class, but the objects will not inherit static methods.
1st Jul 2019, 4:36 PM
Seb TheS
Seb TheS - avatar