3
votes
When to use final
If you are writing a application that someone will have to read the code after, say, 1 year, then yes, use final on variable that should not be modified all the time. By doing this, your code will …
0
votes
Should log file streams be opened/closed on each write or kept open during a desktop application’s lifetime?
For large intensive applications, what I usually do is I keep the log file open for the duration of the application and have a separate thread that flushes log content in the memory to HDD periodic …
0
votes
What real life bad habits has programming given you?
My comp sci frd and I started to talk geekly
When we are hungry we say "my buffer is underflow"
When we get sick and throw up we say "my buffer overflowed"
…
