I
Immortal Nephi
I do not have book -- Effective C++: 55 Specific Ways to Improve Your
Programs and Designs, 3/E. The programmer uses it and learns how to
write high performance code with best optimization. Can you please
tell me? Do it mention singleton object?
My goal is to create library. The clients can import library into
their source code and invoke either functions or classes.
I want to use only one instance for the lifetime throughout execution
program. Should I declare all data members and member functions to be
static in the singleton class? Do singleton benefit higher
performance? Please let me know.
Programs and Designs, 3/E. The programmer uses it and learns how to
write high performance code with best optimization. Can you please
tell me? Do it mention singleton object?
My goal is to create library. The clients can import library into
their source code and invoke either functions or classes.
I want to use only one instance for the lifetime throughout execution
program. Should I declare all data members and member functions to be
static in the singleton class? Do singleton benefit higher
performance? Please let me know.