Web Directory

  Papers (23)

Submit a Featured Link: [$19.00] Submit a Regular Link: [$9.00]  

Regular Websites in this category

An Introduction to XML Data Binding in C++ Open in a new windowLink Details
- This article looks at XML Data Binding at a new alternative to automate much of the task of processing XML data by presenting the information stored in XML as a statically-typed, vocabulary-specific object model. (Boris Kolpackov)
- http://www.artima.com/cppsource/xml_data_binding.html

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
Mixing C and C++ Code in the Same Program Open in a new windowLink Details
- How-to article by Stephen Clamage.
- http://developers.sun.com/sunstudio/articles/mixing.html

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
Functional Style in C++ Open in a new windowLink Details
- Discusses closures, late binding, and lambda abstractions.
- http://okmij.org/ftp/cpp-digest/Functional-Cpp.html

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
An Introduction to Garbage Collection, Part I Open in a new windowLink Details
- Presents an introduction to garbage collection, presenting the subject in enough detail to show the various tradeoffs and advantages between various techniques and what goes on under the hood in a typical garbage collector.
- http://icu.sourceforge.net/docs/papers/cpp_report/an_introduction_to_garbage_collection_part_i.html

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
The Assignment Operator Revisited Open in a new windowLink Details
- Looks at how difficult it is to copy state from one object to another. (Richard Gillam)
- http://icu.sourceforge.net/docs/papers/cpp_report/the_assignment_operator_revisited.html

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
The Anatomy of the Assignment Operator Open in a new windowLink Details
- In depth discussion of writing solid assignment operators. Explains exception safety and memory management issues.
- http://icu.sourceforge.net/docs/papers/cpp_report/the_anatomy_of_the_assignment_operator.html

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
Creating Truly Maintainable Class Factories Open in a new windowLink Details
- Presents a solution that is easily extensible and maintainable; what's more, it is particularly well suited to creating objects from XML data.
- http://www.ddj.com/dept/cpp/184401309

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
Optimizing Software in C++ Open in a new windowLink Details
- An optimization manual for advanced C++ programmers on Windows, Linux and Mac platforms. Topics include: the choice of platform and operating system, choice of compiler and framework, finding performance bottlenecks, the efficiency of different C++ constr
- http://www.agner.org/optimize/optimizing_cpp.pdf

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
The Miseducation of C++ Open in a new windowLink Details
- Modern C++ is a more expressive, simpler language than C, and a language in its own right, so why do so many people insist on teaching it historically? Kevlin Henney appeals for a reform of the C++ education system.
- http://www.two-sdg.demon.co.uk/curbralan/papers/TheMiseducationOfC++.pdf

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
C++?? : A Critique of C++ Open in a new windowLink Details
- A Critique of C++ and Programming and Language Trends of the 1990s.
- http://burks.brighton.ac.uk/burks/pcinfo/progdocs/cppcrit/

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
Introducing the Catenator Open in a new windowLink Details
- This article introduces a very sophisticated and useful data structure for efficient string processing, while at the same time revealing some interesting features of C++. (Adam Sanitt)
- http://www.artima.com/cppsource/catenator.html

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
Dynamic C++ Classes Open in a new windowLink Details
- Describes a lightweight mechanism to update code in a running program. (Gísli Hjálmtýsson, Robert Gray)
- http://www.usenix.org/publications/library/proceedings/usenix98/full_papers/hjalmtysson/hjalmtysson.pdf

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
C++ Optimizations Open in a new windowLink Details
- List of C++ source code optimizations that can give big returns, especially when used in tight loops. By Andrew S. Winter.
- http://www.custard.org/%7eandrew/optimize.php

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
C++: Beyond The Standard Library Open in a new windowLink Details
- Takes a look at Blitz++, MTL (Matrix Template Library), ACE, Loki and Boost.
- http://www.cprogrammingtrends.com/cprogrammingtrends-43-20030728CBeyondTheStandardLibrary.html

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
Herb Sutter - Publications Open in a new windowLink Details
- Over 80 in-depth articles about object-oriented software development and C++ design and programming have been published in C/C++ Users Journal, C++ Report, Dr. Dobb's Journal, Java Report, Visual C++ Developer's Journal, and other magazines.
- http://www.gotw.ca/publications/

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
Symbolic Constants Open in a new windowLink Details
- Shows all choices for defining symbolic constants.
- http://www.embedded.com/story/OEG20011016S0116

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
The Design and Implementation of SPECS: An Alternative C++ Syntax Open in a new windowLink Details
- By B.M. Werther and D.M. Conway, Dept. Computer Science, Monash University, Melbourne.
- http://www.csse.monash.edu.au/~damian/papers/PDF/SPECS.pdf

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
Constant Objects and Constant Expressions Open in a new windowLink Details
- Explains why constant objects are not as useful as some people would like them to be.
- http://www.embedded.com/story/OEG20011220S0063

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
Enumeration Constants vs. Constant Objects Open in a new windowLink Details
- Presents insights on choosing between symbolic constants as either enumeration constants or constant objects.
- http://www.embedded.com/story/OEG20011129S0065

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
What is Koenig Lookup? Open in a new windowLink Details
- A definition of argument-dependent name lookup with examples for application with HP aC++.
- http://h21007.www2.hp.com/dspp/tech/tech_TechDocumentDetailPage_IDX/1,1701,990,00.html

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
Contracts: From Analysis to C++ Implementation Open in a new windowLink Details
- Describes a set of techniques and tools (an environment) facilitating prototyping of, providing general mechanisms for, object-oriented architectures based on the idea of assertion checking and Design by Contract (DbC) in C++.
- http://fodok.uni-linz.ac.at/JKUFODOK/ENGLISH/RU_246000-9104/PUB_1999/PUB_32893.html

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
Publications by Bjarne Stroustrup Open in a new windowLink Details
- Reasonably complete list of Bjarne's publications.
- http://www.research.att.com/~bs/papers.html

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing
C++ in the Real World Open in a new windowLink Details
- This article explores the strengths of C++, and how to exploit them in projects.
- http://www.cantrip.org/realworld.html

Lock this listing - So it can't be removedLock this listing - and upgrade it to FeaturedReport this listing

Submit a Featured Link: [$19.00]  Submit a Regular Link: [$9.00]