Set, Hash, HashSet, LinkedHashSet, TreeSet
List π Set List: duplicationβοΈ, indexβοΈ, used for order Set: duplicationβ, no index β, used for search β Set uniqueness, no duplication no order, no index fast search β Hash π...
List π Set List: duplicationβοΈ, indexβοΈ, used for order Set: duplicationβ, no index β, used for search β Set uniqueness, no duplication no order, no index fast search β Hash π...
β Array ππ» use index and input, change, get value: O(1) λ°°μ΄μλ indexκ° μκΈ° λλ¬Έμ ππ» search, insert value: O(n), need to search, compare the whole array, ππ» array size is f...
β Generic μ¬μ©ν νμ μ 미리 κ²°μ νμ§ μλλ€, type parameter κ²°μ μ 미루기 ν΄λμ€ μμ±ν λ νμ μ κ²°μ νμ§ μκ³ , μΈμ€ν΄μ€ μμ± λ νμ κ²°μ when creating class: use type parameter <T> when creating instance: set type when cre...
β Why do we need Exception class? μ μ νλ¦κ³Ό μμΈ νλ¦μ λ°λ‘ λΆλ¦¬νκΈ° μν΄ ππ» before connect -> send - disconnectνλ μ½λλΌλ©΄ μ μ νλ¦κ³Ό μμΈ νλ¦μ΄ μμ¬μ μ΄ μ½λκ° λλ체 μ΄λ€ μμλ‘ λ¬΄μμ νλμ§ μκΈ°κ° μ΄λ €μ client.initError...
β Nested Class class with class inside βοΈ Types of nested class 1οΈβ£ Static nested class Non-static nested class 2οΈβ£ Inner class 3οΈβ£ Local class 4οΈβ£ Anonymou...
β LocalDateTime ππ» get time of my local area LocalDate: 2023-11-21 LocalTime: 00:20:30.234 LocalDateTime: LocalDate + LocalTime, 2023-11-21T00:20:30.234 now() LocalDat...
ππ» Limit of Primitive type 1οΈβ£ primitive type is not an instance cannot use collection framework 2οΈβ£ cannot use null ππ» Advantage of primitive type: faster than wrapper type β W...
β Why do we need Enum? Limit field to certain value User role can be only BASIC, GOLD, DIAMOND ππ» how can we prevent entering basiiiic(μ€ν) or diamond(μλ¬Έμ) or VIP(μ‘΄μ¬νμ§ μλ κ°)? π ENU...
β Class ν΄λμ€ Class ν΄λμ€λ₯Ό ν΅ν΄μ get metadata about a class ν μ μλ€ βοΈ get class type information: class name, super class, interface, access modifierβ¦ βοΈ reflection: get field, method, co...
β String is reference String is reference value can create String as literal or as instance String str1= "hello"; //literal String str2 = new String("hello"); //instance π° two code is...