mirror of
https://github.com/Light-City/CPlusPlusThings.git
synced 2026-02-08 04:56:14 +08:00
support bazel complie this project and format code.
This commit is contained in:
31
learn_class/modern_cpp_30/obj/obj4.cpp
Normal file
31
learn_class/modern_cpp_30/obj/obj4.cpp
Normal file
@@ -0,0 +1,31 @@
|
||||
//
|
||||
// Created by light on 19-12-22.
|
||||
//
|
||||
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
// Can copy and move
|
||||
class A {
|
||||
public:
|
||||
A() { cout << "Create A\n"; }
|
||||
|
||||
~A() { cout << "Destroy A\n"; }
|
||||
|
||||
A(const A &) { cout << "Copy A\n"; }
|
||||
|
||||
A(A &&) = delete;
|
||||
};
|
||||
|
||||
A getA_duang() {
|
||||
A a1;
|
||||
A a2;
|
||||
if (rand() > 42) {
|
||||
return a1;
|
||||
} else {
|
||||
return a2;
|
||||
}
|
||||
}
|
||||
|
||||
int main() { auto a = getA_duang(); }
|
||||
Reference in New Issue
Block a user