我在 wikipedia 上查看 RAII 的 C++ 示例,我遇到了一些对我来说没有意义的东西。
这是代码片段本身,全部归功于维基百科:
#include <string>
#include <mutex>
#include <iostream>
#include <fstream>
#include <stdexcept>
void write_to_file (const std::string & message) {
// mutex to protect file access
static std::mutex mutex;
// lock mutex before accessing file
std::lock_guard<std::mutex> lock(mutex);
// try to open file
std::ofstream file("example.txt");
if (!file.is_open())
throw std::runtime_error("unable to open file");
// write message to file
file << message << std::endl;
// file will be closed 1st when leaving scope (regardless of exception)
// mutex will be unlocked 2nd (from lock destructor) when leaving
// scope (regardless of exception)
}
最后的评论说:“文件将首先关闭......互斥锁将被解锁......”。我了解 RAII 的概念,并且知道代码在做什么。但是,我看不出是什么(如果有的话)保证了该评论声称的顺序。
以问号结束:什么保证在互斥锁解锁之前关闭文件?