I am trying to understand what traits are, for example expressions like typedef typename traits_type::off_type off_type
in the GNU implementation of fstream
.
This question came up when I was working with files larger than 2/4 GB. I found that recompiling the STL library, with the appropriate flags usually solves the large file issues.
Traits are a way of "adding" properties to existing types. Let's say we are creating a container type, which contains a typedef to tell its contained data type. The classic way would be:
This has the disadvantage that we have to create our class just to contain the typedef - eg. third party containers and basic types cannot be used by code that assumes
Cont::contained_type
type. So we introduce a traits struct, which adds an indirection in the process:Alos, the traits template can be a parameter of algorithms using it, which permits us to use different traits with a single data type (see the
std::string
class).That said, I don't believe traits have much to do with 64-bit systems.