All public logs

Combined display of all available logs of Y Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 11:55, 28 August 2024 Yba talk contribs created page Cpp (Created page with "== Move == <syntaxhighlight lang="c++"> // Online C++ compiler to run C++ program online #include <iostream> #include <optional> using namespace std; class A { public: A() { cout << "A's constructor: " << this << endl; } A(const A& a) { cout << "A's copy constructor: " <<this << " form " << &a << endl; } A(A&& a) { cout << "A's move constructor: " <<this << " form " << &a << endl; } A& operator=(const A& a) { cout << "A's assignment" <<this << " for...") Tag: 2017 source edit