dev-resources.site
for different kinds of informations.
Java Main Method ve “Merhaba Dünya”
Published at
1/18/2022
Categories
java
main
helloworld
Author
ozgur
Author
5 person written this
ozgur
open
JVM tarafından bir Java uygulamasının çalışabilmesi için “main methodunun” olması zorunlu kılınmıştır.
Main method’unun temel özellikleri
- Public olmalıdır.
- Method adı “main” olmalıdır.
- Static olmalı ve dönüş tipi void olmalıdır. (Program işini bitirse bile, JVM çalışmaya devam edebileceğinden, dönüş değerinin bir önemi olmayacaktır. Bu sebeple void olmalıdır.)
Örnek program
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Merhaba Dunya");
}
}
Program Çıktısı
“.java” uzantılı dosyanın javac ile derlenmesi ve sonrasında “.class” uzantılı dosyanın çalıştırılması.
main Article's
11 articles in total
How to help coding agents help you
read article
Understanding LLM temperature from first principles
read article
Adding structured outputs as a feature to any LLM
read article
Python & OpenAI beginner journey 2 | def main()
read article
Every C program has main()? (False)
read article
Java: The Main Method
read article
Java Main Method ve “Merhaba Dünya”
currently reading
HTML tags | main
read article
Web2py python wramework main features
read article
Change branch name from master to main
read article
How is a program on linux executed?
read article
Featured ones: