Copy elision

Channel:
Subscribers:
8,800
Published on ● Video Link: https://www.youtube.com/watch?v=SwkDrFRBSgQ



Duration: 5:53
26 views
1


In C++ computer programming, copy elision refers to a compiler optimization technique that eliminates unnecessary copying of objects.
The C++ language standard generally allows implementations to perform any optimization, provided the resulting program's observable behavior is the same as if, i.e. pretending, the program were executed exactly as mandated by the standard. Beyond that, the standard also describes a few situations where copying can be eliminated even if this would alter the program's behavior, the most common being the return value optimization (see below). Another widely implemented optimization, described in the C++ standard, is when a temporary object of class type is copied to an object of the same type. As a result, copy-initialization is usually equivalent to direct-initialization in terms of performance, but not in semantics; copy-initialization still requires an accessible copy constructor. The optimization can not be applied to a temporary object that has been bound to a reference.

Source: https://en.wikipedia.org/wiki/Copy_elision
Created with WikipediaReaderReborn (c) WikipediaReader







Tags:
Asifrule
Builtintype
C11
Classcomputing
Compiler
Compileroptimization
Computerprogram