Java - Predefined funtional interface
1. Void return and zero paramter Use Runnable 1 2 3 4 5 6 void runTask(Runnable task) { task.run(); } runTask(()-> { // do something }); 2. Return v...
1. Void return and zero paramter Use Runnable 1 2 3 4 5 6 void runTask(Runnable task) { task.run(); } runTask(()-> { // do something }); 2. Return v...
http://thbecker.net/articles/rvalue_references/section_01.html
How C++11 can help to make C++ meta programming easier http://jguegant.github.io/blogs/tech/sfinae-introduction.html
The following URL has a nice article about git flow http://yakiloo.com/getting-started-git-flow/
From Java7, it introduced the mechanism to release the resource automatically as C# does with using statement. In C#, you can use the using statement to rele...