设计模式DP-单例模式

#include <stdio.h> #include <assert.h> #include <stdlib.h> typedef struct _singleton_t { int data; }singleton_t; /* 全局静态指针(指向唯一实例) */ static singleton
posted @ 2024-03-20 11:20  starc再起航  阅读(2)  评论(0编辑  收藏  举报