Saltar al contenido

psvm en ejemplo de código java

Ejemplo 1: public static void main (string args)

Class main {
  Public static void main(String[] args) {
    //Write your code here
  }
}

Ejemplo 2: función principal de jave

public static void main(String[] args)

Ejemplo 3: por qué el método principal es public static void en java

public :publicis an access specifier which can be used outside the class. 
When main method is declared
public it means it can be used outside class.
static : To call a method we require object. Sometimes it may be 
required to call a method without the help of object. Then we declare that 
method as static. JVM calls the main() method without creating
object by declaring keyword static.
If we make the main method non-static, 
JVM will have to create its object first and then call main() method which 
will lead to the extra memory allocation.
void : void return type is used when a method does’nt return any value. 
main() method doesn’t return any value, so main() is declared as void.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *