Ggingrace-dev.hashnode.dev·Aug 18, 2025 · 2 min readJava Enum => classanswers from chatgpt 1. An enum is actually a class In Java, an enum isn’t just a set of constants — it’s a special kind of class.For example: enum AutoGrade { LOGIN, GUEST, ADMIN } The compiler roughly transforms it into something like this: fi...00
Ggingrace-dev.hashnode.dev·Aug 17, 2025 · 1 min readTIL (Day1 - Day7)8/17(Sun) : DAY 1 - Study Items How to use a HashNode : currently testing different functions Python basic review to solve Leetcode style questions (plan to finish until the OOP section) 8/18(Mon) : DAY 2 - JAVA enum, nested class00