ACCU Home page ACCU Conference Page
Search Contact us ACCU at Flickr ACCU at GitHib ACCU at Facebook ACCU at Linked-in ACCU at Twitter Skip Navigation

Programming Topics

Browse in : > Topics > Programming

Static Polymorphic Named Parameters in C++
Description : Adding parameters to an object can be messy. Martin Moene demonstrates how method chaining can make code more readable. by Martin Moene

Integrating the Catch Test Framework into Visual Studio
Description : Visual Studio’s Test Explorer allows native C++ tests to be run under a managed wrapper. Malcolm Noyes takes it a step further using Catch to drive the tests. by Malcolm Noyes

Anatomy of a Java Decompiler
Description : Java byte code can be reverted back into source code. Lee Benfield and Mike Strobel show how. by Lee Benfield and Mike Strobel

Optimizing Big Number Arithmetic Without SSE
Description : Addition and multiplication can be slow for big numbers. Sergey Ignatchenko and Dmytro Ivanchykhin try to speed things up. by Sergey Ignatchenko and Dmytro Ivanchykhin

Capturing lvalue References in C++11 Lambdas
Description : How confusing does it get when references refer to references and references are captured by value? Pete Barber shows us that it all falls out in the C++ consistency wash. by Pete Barber