C++测试代码

C++测试代码

目录

基于C++实现的AOP功能

cpp 复制代码
#include <iostream>
#include <string>

struct LogHeader {
    std::string prefix;
    std::string aspect;
};

template <typename T>
void before(const std::string& msg, const LogHeader& header) {
    std::cout << header.prefix << " [" << header.aspect << "]: Before " << msg << std::endl;
}

template <typename T>
void after(const std::string& msg, const LogHeader& header) {
    std::cout << header.prefix << " [" << header.aspect << "]: After " << msg << std::endl;
}

// 抽象基类代替接口
class MessageService {
public:
    virtual ~MessageService() = default;
    virtual std::string getMessage() = 0; // 纯虚函数
};

class MessageServiceImpl : public MessageService {
public:
    std::string getMessage() override {
    	std::cout << "Hello, World!" << std::endl;
        return "Hello, World!";
    }
};

template <typename T>
class LoggingWrapper : public T {
    LogHeader header;

public:
    LoggingWrapper(const LogHeader& h) : header(h) {}

    template <typename... Args>
    LoggingWrapper(const LogHeader& h, Args&&... args) : T(std::forward<Args>(args)...), header(h) {}

    std::string getMessage() {
        before<LoggingWrapper<T>>("getMessage", header);
        std::string result = T::getMessage();
        after<LoggingWrapper<T>>("getMessage", header);
        return result;
    }
};

int main() {
    LogHeader header = {"MyApp", "Logging"};
    LoggingWrapper<MessageServiceImpl> service(header);
    service.getMessage();
    return 0;
}
  • 说明:
    • 以上代码由claude ai生成,经测试正常运行
    • ~MessageService()是MessageService类的析构函数,用于在对象被销毁时执行必要的清理工作。
    • virtual关键字的作用是使该析构函数在继承层次中有多态行为。这意味着当我们通过基类指针/引用删除派生类对象时,将自动调用正确的派生类析构函数。
    • = default是C++11引入的语法,它告诉编译器为该函数生成一个默认的实现版本。
    • 该虚析构函数没有函数体,编译器将为它生成一个默认的空实现
相关推荐
YMWM_6 分钟前
第一章 Go语言简介
开发语言·后端·golang
只因在人海中多看了你一眼8 分钟前
python语言基础
开发语言·python
2401_8582861110 分钟前
101.【C语言】数据结构之二叉树的堆实现(顺序结构) 下
c语言·开发语言·数据结构·算法·
y250811 分钟前
《Object类》
java·开发语言
小技与小术15 分钟前
数据结构之树与二叉树
开发语言·数据结构·python
Beau_Will15 分钟前
数据结构-树状数组专题(1)
数据结构·c++·算法
hccee37 分钟前
C# IO文件操作
开发语言·c#
hummhumm41 分钟前
第 25 章 - Golang 项目结构
java·开发语言·前端·后端·python·elasticsearch·golang
hunandede1 小时前
av_image_get_buffer_size 和 av_image_fill_arrays
c++
J老熊1 小时前
JavaFX:简介、使用场景、常见问题及对比其他框架分析
java·开发语言·后端·面试·系统架构·软件工程