Java是一種流行的編程語言,它的設(shè)計(jì)理念以“一次編寫,到處運(yùn)行”的思想和注重?cái)?shù)據(jù)安全性、代碼規(guī)范性為主要特點(diǎn),是一種真正的面向?qū)ο缶幊陶Z言。
示例1: public class HelloWorld{ public static void main(String[] args){ System.out.println("Hello World!"); } }
Java的思想主要分為以下幾類:
1. 面向?qū)ο笏枷?/p>
示例2: public class Dog { String breed; String color; int age; void barking() { System.out.println("汪汪汪"); } void hungry() { System.out.println("餓了"); } void sleeping() { System.out.println("睡著了zzz"); } }
2. 開放性思想
示例3: public interface MyInterface { void method1(); void method2(); } public class MyClass implements MyInterface { public void method1() { System.out.println("MyClass.method1()"); } public void method2() { System.out.println("MyClass.method2()"); } public static void main(String args[]) { MyInterface obj = new MyClass(); obj.method1(); obj.method2(); } }
3. 多線程思想
示例4: public class MyThread extends Thread { public void run() { System.out.println("MyThread.run()"); } public static void main(String args[]) { MyThread t = new MyThread(); t.start(); } }
以上是Java語言的思想概述和舉例,Java的思想慢慢融入到了我們的日常開發(fā)中,讓程序更加優(yōu)雅和高效。