Status Updates From Effective Java
Effective Java by
Status Updates Showing 31-60 of 70
Ha Truong
is 70% done
We follow two rules in the matter of optimization:
Rule 1. Don’t do it.
Rule 2 (for experts only). Don’t do it yet—that is, not until you have a
perfectly clear and unoptimized solution.
—M. A. Jackson
— May 17, 2016 05:35AM
Add a comment
Rule 1. Don’t do it.
Rule 2 (for experts only). Don’t do it yet—that is, not until you have a
perfectly clear and unoptimized solution.
—M. A. Jackson
Ha Truong
is 8% done
Planned to scan items but looks like I made the wrong decision. Each item in this book is so catchy that I have to read one by one thoroughly.
— Feb 15, 2016 07:33AM
Add a comment
Vasyl Spodin
is on page 114 of 440
Статья 16 "Предпочитайте компоновку наследованию"
— May 08, 2015 12:29PM
Add a comment
Vasyl Spodin
is on page 46 of 440
Глава 3 "Методы, общие для всех объектов"
— Apr 07, 2015 12:15AM
Add a comment
Peter Perhac
is on page 67 of 346
I can tell by reading just the first dozen items in this book that it's incredibly good. I believe this is an absolute must read for all Java software developers. can't wait to reach some of the later chapters. I intend to read this cover to cover, although it's not a requisite.
— Sep 05, 2014 03:22PM
Add a comment
Dainius Jocas
is on page 241 of 412
Now it is time for exceptions.
— Jul 23, 2014 02:20PM
Add a comment
Denys Digtiar
is 40% done
Chapter about Generics is done. Well written and useful.
— May 31, 2013 02:40AM
Add a comment
something_
is 24% done
"it is impossible to represent 0.1 (or any other negative power of ten) as a float or double
exactly."
Once again, *mindblown*. I shudder to think how many mistakes must be buried in my software pieces on account of this one.
— Nov 26, 2012 03:06PM
Add a comment
exactly."
Once again, *mindblown*. I shudder to think how many mistakes must be buried in my software pieces on account of this one.
something_
is 18% done
Check parameters:
- public methods: throw exceptions
- private ones: use assert!
— Nov 20, 2012 03:28PM
Add a comment
- public methods: throw exceptions
- private ones: use assert!
something_
is 9% done
"Using the string concatenation operator
repeatedly to concatenate n strings requires time quadratic in n. It is an unfortunate
consequence of the fact that strings are immutable. When two strings are
concatenated, the contents of both are copied." Oo
— Nov 15, 2012 08:09AM
Add a comment
repeatedly to concatenate n strings requires time quadratic in n. It is an unfortunate
consequence of the fact that strings are immutable. When two strings are
concatenated, the contents of both are copied." Oo
something_
is starting
I just began this book, and I'm already learning quite the interesting things! This can only be a good sign.
From now on, all my for loops shall look like this:
for (int i = 0, n = expensiveComputation(); i < n; i++) {}
So obvious, so simple, and yet, why aren't we all doing it this way?
— Nov 13, 2012 04:02PM
Add a comment
From now on, all my for loops shall look like this:
for (int i = 0, n = expensiveComputation(); i < n; i++) {}
So obvious, so simple, and yet, why aren't we all doing it this way?
Wajdy Essam
is on page 27 of 346
#Java: whenever a class manages its own memory, the #programmer should be alert for #memory #leaks
— Aug 06, 2012 02:05AM
Add a comment












