Bài trước về Singleton có thực sự dễ, tôi nhận được vài comment rất chuẩn về cách cài đặt xử lý với theading. Vì bài trước tập trung nói về Singleton và...
Khi nói về Design Patterns, gần 100% những người tôi tiếp xúc đều thực hành Singleton như một design pattern phổ biến và dễ nhất (nhiều người chỉ biết/nhớ mỗi Singleton trong...
Following my problem with KFC system, let's see another real world problem: The food shop chain with a central hotline/database couldn't work sometimes because of single point that needs to be always...
Hôm nay đồng nghiệp hỏi câu này: Tại sao nên viết như #a thay vì #b?
/* a. */ List<> list = new ArrayList<>;();
/* b. */ ArrayList<> list = new ArrayList<>();
Tôi mở rộng...
In my opinion, iterating through a collection is very basic and simple thing because it appears in any developer's code everyday (of course in the languages support collection).
It's normally my simplest question...