Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

最卢的瑟's homework #312

Merged
merged 7 commits into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions src/群友提交/第01题/brian.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
//
// loser_homework / brian.cpp
// Created by brian on 2024 Apr 03.
//

#include <vector>
#include <functional>
#include <iostream>
#include <algorithm>

template<typename T, typename Func>
requires std::invocable<Func, T&>
std::vector<T>& operator|(std::vector<T>& vec, Func const& func) {
std::ranges::for_each(vec, func);
return vec;
}


int main() {
std::vector v{1, 2, 3};
std::function f{[](const int& i) { std::cout << i << ' '; }};
auto f2 = [](int& i) { i *= i; };
v | f2 | f;
}
34 changes: 34 additions & 0 deletions src/群友提交/第04题/brian.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
//
// loser_homework / brian.cpp
// Created by brian on 2024 Apr 03.
//
#include<iostream>

class ComponentBase {
protected:
static inline std::size_t component_type_count = 0;
};

template<typename T>
class Component : public ComponentBase {
public:
static size_t component_type_id() {
static size_t unique_id = component_type_count++;
return unique_id;
}
};

class A : public Component<A> {};

class B : public Component<B> {};

class C : public Component<C> {};

int main() {
std::cout << A::component_type_id() << std::endl;
std::cout << B::component_type_id() << std::endl;
std::cout << B::component_type_id() << std::endl;
std::cout << A::component_type_id() << std::endl;
std::cout << A::component_type_id() << std::endl;
std::cout << C::component_type_id() << std::endl;
}
86 changes: 86 additions & 0 deletions src/群友提交/第05题/brian.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
//
// loser_homework / scope_guard.cpp
// Created by brian on 2024 Apr 03.
//
#include <cstdio>
#include <cassert>

#include <stdexcept>
#include <functional>

struct X {
X() { puts("X()"); }

X(const X&) { puts("X(const X&)"); }

X(X&&) noexcept { puts("X(X&&)"); }

~X() { puts("~X()"); }
};

struct scope_guard {
template<typename F, typename... A>
requires std::invocable<F, A...>
scope_guard(F&& func, A&& ...args) {
gc = [&func, &args...]() mutable {
/**
* @brief https://en.cppreference.com/w/cpp/utility/functional/invoke
* invoke: 如果\p func 是成员函数, 则\p ...args 的第一个参数是对应的对象(\p &,* )
*/
std::invoke(std::forward<F>(func), std::forward<A>(args)...);
};
}
~scope_guard() { gc(); }
scope_guard(const scope_guard&) = delete;
scope_guard& operator=(const scope_guard&) = delete;

private:
std::function<void()> gc;
};


int main() {
{
// scope_guard的作用之一,是让各种C风格指针接口作为局部变量时也能得到RAII支持
// 这也是本题的基础要求
FILE* fp = nullptr;
try {
fp = fopen("test.txt", "a");
auto guard = scope_guard([&] {
fclose(fp);
fp = nullptr;
});

throw std::runtime_error{"Test"};
} catch (std::exception& e) {
puts(e.what());
}
assert(fp == nullptr);
}
puts("----------");
{
// 附加要求1,支持函数对象调用
struct Test {
void operator()(X* x) {
delete x;
}
} t;
auto x = new X{};
auto guard = scope_guard(t, x);
}
puts("----------");
{
// 附加要求2,支持成员函数和std::ref
auto x = new X{};
{
struct Test {
void f(X*& px) {
delete px;
px = nullptr;
}
} t;
auto guard = scope_guard{&Test::f, &t, std::ref(x)};
}
assert(x == nullptr);
}
}
Loading