Programming(18)
-
Coding Ground [ 웹 컴파일러 (언어종류多) ]
https://www.tutorialspoint.com/codingground.htm C, C++, Java, Python, PHP Online IDE and Compliers - Coding Ground Coding Ground For Developers Code, Edit, Run and Share www.tutorialspoint.com
2022.02.15 -
Vuetify [ Vue.js 컴포넌트 및 예시 ]
https://vuetifyjs.com/en/ Vuetify — A Material Design Framework for Vue.js Vuetify is a Material Design component framework for Vue.js. It aims to provide all the tools necessary to create be... vuetifyjs.com
2022.02.15 -
Repl.it [ 웹 컴파일러 ]
https://replit.com/ The collaborative browser based IDE Replit is a simple yet powerful online IDE, Editor, Compiler, Interpreter, and REPL. Code, compile, run, and host in 50+ programming languages. replit.com Python 웹 컴파일러 용도로 접했는데, 다른 언어들도 지원하고 유용한 사이트
2022.02.15 -
$.extend()
오브젝트를 합칠 때 사용하는 함수. netUtil.js 파일에서 공통으로 사용했었다. jQuery.extend(true, a, b) ( = $.extend(true, a, b)) - 복수의 오브젝트를 합쳐주는 함수 - a 에 b 를 합친다. 첫번째 인자값으로 true/false 여부는 a 오브젝트에 b 오브젝트 합칠 시 덮어쓰기 여부이다. true 이면, a 오브젝트를 없애지 않고 Union All
2022.02.15 -
ENUM
프로젝트시 상수관리는 따로 Config.java 파일을 생성하여 final static String 등으로 관리하는데, 관리대상이 많아질 경우 가독성이 떨어지는 단점이 있다. enum은 Enmeration으로 열거형이라고 불리며, 서로 연관된 상수들의 집합을 의미합니다. 선언ex) CommonConfig.java public enum RfcConfig { RFC_FORMATDATA_FORM("yyyyMMdd HH:mm:ss"); private final String text; RfcConfig( String text ) { this.text = text; } public String getValue() { return text; } } 사용ex) CommonConfig.RfcConfig.RFC_FORMA..
2022.02.15 -
Comparator Interface
Comparator 란? Java에서 객체를 정렬할 때 사용하는 Interface. Comparator 를 이해하려면 Comparable Interface 도 같이 알아야한다. 공통점은 정렬의 기준을 정의한다는 것이고, 차이점은 정렬 기준이 일반적이냐 특정하냐 차이와 compareTo(Object o) 를 구현하느냐 compare(Object o1, Object o2) 를 구현하느냐이다. Comparable 은 알아서 정렬, Comparator 은 내가 정렬기준을 만들 수 있다는 차이. Comparator vs Comparable Comparator : 객체 간의 특정한 정렬이 필요할 때, Comparator Interface 를 implements 하여 특정 기준을 정의하는 compare()를 구현한다..
2020.12.30