Questions
Linux
Laravel
Mysql
Ubuntu
Git
Menu
HTML
CSS
JAVASCRIPT
SQL
PYTHON
PHP
BOOTSTRAP
JAVA
JQUERY
R
React
Kotlin
×
Linux
Laravel
Mysql
Ubuntu
Git
Code Complete
Code Complete has asked
24
questions and find answers to
3
problems.
Stats
219
EtPoint
36
Vote count
24
questions
3
answers
About
Code Complete questions
Why CopyOnWriteArrayList's iterator allows remove() in enhanced-for loop, while its iterator does not support remove() operation?
Why `switch(null)` is a compile error but `switch(str)` is fine with str being `static final String str = null;`?
target/ vs /target/ in .gitignore
Why YearMonth is Temporal while MonthDay is not Temporal?
Why is 7 / 3 not always an int? Why can it be assigned into byte or short while x/3 cannot? [duplicate]
Cast to generic type (T) is never checked by the compiler?
Why cannot use this while calling static interface method from default interface method? [duplicate]
Why subsignature and unchecked rules work this way on return types when overriding a generic method with a non-generic one?
Why can static and default interface methods not be synchronized but can be strictfp? [duplicate]
Why does int p = (p=1) + p; fail in field definitions but is OK within method?
Code Complete answers
Code Example of "obscuring" as per JLS (6.4.2. Obscuring), especially this "local variable or type can obscure a package"
Why ArrayList add() and add(int index, E) complexity is amortized constant time? Why not O(1) for add(), O(n) for add(int index, E)? [duplicate]