How to execute a piece of code only once?(如何只执行一段代码一次?)
问题描述
我有一个应用程序,其中包含多个功能.每个函数都可以根据用户输入多次调用.但是,我只需要在一个函数中执行一小段代码,最初是在应用程序启动时.当稍后再次调用相同的函数时,不得执行这段特定的代码.代码在 VC++ 中.请告诉我处理这个问题的最有效方法.
I have an application which has several functions in it. Each function can be called many times based on user input. However I need to execute a small segment of the code within a function only once, initially when the application is launched. When this same function is called again at a later point of time, this particular piece of code must not be executed. The code is in VC++. Please tell me the most efficient way of handling this.
推荐答案
使用具有构造函数的全局静态对象(在 main
之前调用)?或者只是在例行程序中
Use global static objects with constructors (which are called before main
)? Or just inside a routine
static bool initialized;
if (!initialized) {
initialized = true;
// do the initialization part
}
很少有这种速度不够快的情况!
There are very few cases when this is not fast enough!
在多线程上下文中,这可能还不够:
In multithreaded context this might not be enough:
您可能还对 pthread_once 或 constructor
函数 __attribute__
GCC.
You may also be interested in pthread_once or constructor
function __attribute__
of GCC.
对于 C++11,您可能需要 std::call_once.
With C++11, you may want std::call_once.
您可能想要使用 如果您的函数可以从多个线程调用,也许可以声明
static volatile std::atomic_bool 初始化;
(但您需要小心).
You may want to use <atomic>
and perhaps declare static volatile std::atomic_bool initialized;
(but you need to be careful) if your function can be called from several threads.
但是这些可能在您的系统上不可用;它们在 Linux 上可用!
这篇关于如何只执行一段代码一次?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何只执行一段代码一次?
基础教程推荐
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01