[Solved] what is the difference between these three constructors?
[ad_1] Coming top-to-bottom: Default constructor: List(); Copy constructor (where const & means it takes const lvalue reference): List( List const & ); Move constructor (where && means it takes non-const rvalue reference): List( List && ); [ad_2] solved what is the difference between these three constructors?