在 2020年4月 发布的文章
Singleton.hServerConfig.h#ifndef AURORA_SERVERCONFIG_H
#define AURORA_SERVERCONFIG_H
#include "Singleton.h"
#include <string>
#include <map>
namespace a...
Singleton.h#ifndef NET_SINGLETON_H
#define NET_SINGLETON_H
template<typename T>
class Singleton
{
public:
static T &instance()
{
static T t;
r...
class noncopyable
{
public:
const noncopyable &operator=(const noncopyable &) = delete;
noncopyable(const noncopyable &) = delete;
...
安装插件File->Plugins->Marketplace显示内存指示File->Appearance->Window Opetions->Show memory indicator修改内存大小HELP->Edit Custum VM Options-Xss8m-Xms1024m-Xmx4196m代码格式化修改Fi...
future.cpp#include <chrono>
#include <iostream>
#include <future>
#include <thread>
std::string call_back(std::string name)
{
std::cout << &qu...
ThreadPool.h// -*- C++ -*-
// Copyright (c) 2012-2015 Jakob Progsch
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the aut...