-
전역 상수는 나쁜 것일까?Programming Language/Python3 2021. 10. 25. 18:02
https://stackoverflow.com/questions/1263954/is-global-constants-an-anti-pattern
not that bad
전역 상수는 나쁘지 않다.
Java
에서는 마치python
의 스크립트에 선언된 전역변수처럼 설정하는 방법# some_script.py VARIABLE_1 = 1 VARIABLE_2 = 'YES' ...
오직 상수에 접근하는 것만 허용한다.
public final class C { // raise error private C() { throw new AssertionError("C is uninstantiable"); } public static final int OMGHAX = 0x539; }
'Programming Language > Python3' 카테고리의 다른 글
[번역] Pytest fixture (0) 2021.10.25 Should `import` statements always at the top? (0) 2021.10.25 Python Define Constants (0) 2021.10.25 Python datetime (0) 2021.10.25 Python append item without duplicates (0) 2021.10.25