--- id: java-intro title: "Java Intro" category: "Programming_Language" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["Java Introduction", "μžλ°” μ†Œκ°œ"] duplicate_of: "" source_trust_level: "B" confidence_score: 0.9 created_at: 2026-07-04 updated_at: 2026-07-04 review_reason: "" merge_history: [] tags: ["java", "programming", "w3schools", "basics"] raw_sources: ["https://www.w3schools.com/java/java_intro.asp"] applied_in: [] github_commit: "" --- # [[Java Intro]] ## 🎯 ν•œ 쀄 톡찰 (One-line insight) Java (1995, owned by Oracle, running on 3+ billion devices) is a platform-independent, object-oriented language whose syntactic closeness to C++/C# makes cross-language switching relatively easy. [S1] ## 🧠 핡심 κ°œλ… (Core concepts) - **Origin** β€” created in 1995, owned by Oracle. [S1] - **Use cases** β€” mobile (especially Android), desktop, web applications, web/app servers, games, database connections. [S1] - **Cross-platform** β€” runs on Windows, Mac, Linux, Raspberry Pi, etc. [S1] - **Object-oriented** β€” gives programs clear structure and reusable code, lowering development cost. [S1] - **Similarity to C++/C#** β€” makes switching between these languages easier. [S1] - **Free and open-source**, with large community support. [S1] ## πŸ“– μ„ΈλΆ€ λ‚΄μš© (Details) - Hello World example: [S1] ```java public class Main { public static void main(String[] args) { String name = "John"; System.out.println("Hello " + name); } } ``` ## βš–οΈ λͺ¨μˆœ 및 μ—…λ°μ΄νŠΈ (Contradictions & updates) μ†ŒμŠ€μ—μ„œ λͺ¨μˆœλ˜λŠ” μ •λ³΄λŠ” λ°œκ²¬λ˜μ§€ μ•ŠμŒ. ## πŸ› οΈ 적용 사둀 (Applied in summary) ν˜„μž¬ 발견된 μ‹€μ œ 적용 사둀가 μ—†μŠ΅λ‹ˆλ‹€ β€” 이후 Syntax μ±•ν„°μ—μ„œ 이 Hello World 예제의 각 κ΅¬μ„±μš”μ†Œκ°€ μƒμ„Ένžˆ μ„€λͺ…λœλ‹€. [S1] ## πŸ’» μ½”λ“œ νŒ¨ν„΄ (Code patterns) Hello World (Java): ```java public class Main { public static void main(String[] args) { System.out.println("Hello " + "John"); } } ``` ## βœ… 검증 μƒνƒœ 및 신뒰도 - **μƒνƒœ:** draft - **검증 단계:** conceptual - **좜처 신뒰도:** B (W3Schools β€” widely used educational reference, not a primary standards body) - **μ‹ λ’° 점수:** 0.90 - **쀑볡 검사 κ²°κ³Ό:** μ‹ κ·œ 생성 (New discovery) ## πŸ”— 지식 κ·Έλž˜ν”„ (Knowledge Graph) - **μƒμœ„/루트:** [[Java Tutorial]] - **κ΄€λ ¨ κ°œλ…:** [[Java Syntax]], [[Java OOP]] - **μ°Έμ‘° λ§₯락:** Java νŠœν† λ¦¬μ–Ό μ „μ²΄μ˜ μ§„μž…μ . ## πŸ“š 좜처 (Sources) - [S1] W3Schools β€” Java Introduction β€” https://www.w3schools.com/java/java_intro.asp ## πŸ“ λ³€κ²½ 이λ ₯ (Change history) - 2026-07-04: Initial draft synthesized from the W3Schools "Java Introduction" page (Astra wiki-curation, P-Reinforce v3.1 format).