Category Archives: Java

Най-добрата стратегия за един софтуерен разработчик

Известно е, че когато един програмист има начални знания по някоя технология, той много бързо и лесно може да ги доразвие и да достигне високо професионално ниво. Много по-трудно е, обаче, ако започне от нулата. Това е и смисъла да … Continue reading

Posted in Java | Leave a comment

Втора сбирка на екипа на книгата „Класически шаблони за дизайн“

За сбирката След първата организационна сбирка (която се състоя на 19.12.20011) и края на първата итерация от проекта за написването на книга за класически шаблони за (софтуерен) дизайн, екипът на книгата реши да се събере отново и втората сбирка ще … Continue reading

Posted in Books, Design Patterns, Java | Tagged , | Leave a comment

Line break in a properties file

Sometimes it is necessary to carry a long text over to the next line in a property file. The solution is to use the backwards slash  “\”  and then press “Enter” (symbol “\n” for a new line). In this case … Continue reading

Posted in Java | Tagged | Leave a comment

The .class Syntax in Java

In my new job we often use “.class” approach to get the name of some class. In the beginning I thought that “.class” is a some public field of class Object which every Java class extends from Object but it … Continue reading

Posted in Java | Tagged | 2 Comments

Compare Maps – Java

One of my today’s subtasks  was to compare 2 maps instances. I found the Apache Commons’s CollectionUtils which is a useful and smart class ( but needless for my aim).  So I didn’t find some satisfactory solution in Internet and … Continue reading

Posted in Java | Tagged | Leave a comment