언어 Language/자바 Java

자바 공식 문서: Learning the Java Language

Tap to restart 2020. 10. 19. 00:00
반응형

자바 문서에 가면 Learning the Java Language 항목이 있다.

(출처: Trail: Learning the Java Language)

그 항목을 들어가면 자바 프로그래밍 언어에 대한 기초 학습 내용이 나온다.

Trail: Learning the Java Language

This trail covers the fundamentals of programming in the Java programming language.

Object-Oriented Programming Concepts 객체지향 프로그래밍 개념

Object-Oriented Programming Concepts teaches you the core concepts behind object-oriented programming: objects, messages, classes, and inheritance. This lesson ends by showing you how these concepts translate into code. Feel free to skip this lesson if you are already familiar with object-oriented programming.

Language Basics 언어 기초

Language Basics describes the traditional features of the language, including variables, arrays, data types, operators, and control flow.

Classes and Objects 클래스와 객체

Classes and Objects describes how to write the classes from which objects are created, and how to create and use the objects.

Annotations 에너테이션

Annotations are a form of metadata and provide information for the compiler. This lesson describes where and how to use annotations in a program effectively.

Interfaces and Inheritance 인터페이스와 상속

Interfaces and Inheritance describes interfaces—what they are, why you would want to write one, and how to write one. This section also describes the way in which you can derive one class from another. That is, how a subclass can inherit fields and methods from a superclass. You will learn that all classes are derived from the Object class, and how to modify the methods that a subclass inherits from superclasses.

Numbers and Strings 숫자와 문자열

Numbers and Strings This lesson describes how to use Number and String objects The lesson also shows you how to format data for output.

Generics 제네릭

Generics are a powerful feature of the Java programming language. They improve the type safety of your code, making more of your bugs detectable at compile time.

Packages 팩키지

Packages are a feature of the Java programming language that help you to organize and structure your classes and their relationships to one another.

반응형