본문 바로가기
IT팁

FQCN (Fully Qualified Class Name)

by e-pd 2021. 1. 3.

en.wikipedia.org/wiki/Fully_qualified_name

 

Fully qualified name - Wikipedia

In computer programming, a fully qualified name is an unambiguous name that specifies which object, function, or variable a call refers to without regard to the context of the call.[citation needed] In a hierarchical structure, a name is fully qualified wh

en.wikipedia.org

 

 

FQCN은 object, 함수, 변수의 계층적 구조를 명시적으로 모두 표현하는 것을 말한다.

 

public static void main(String[] args) {
        String hello_world = new java.lang.String("Hello world");
}

Java의 경우 클래스가 포함된 패키지를 명시한다. 

'IT팁' 카테고리의 다른 글

대역 연습  (0) 2021.10.10
오라클 클라우드 무료사용하기  (0) 2021.08.12
Server Side Rendering  (0) 2020.11.04
Bouncer Pattern  (0) 2020.08.19
Builder Pattern  (0) 2020.07.18