日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

muduo之Atomic

發布時間:2025/6/15 编程问答 18 豆豆
生活随笔 收集整理的這篇文章主要介紹了 muduo之Atomic 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

? ? ? ? ?Atomic是muduo原子操作的實現類。

Atomic.h

// Use of this source code is governed by a BSD-style license // that can be found in the License file. // // Author: Shuo Chen (chenshuo at chenshuo dot com)#ifndef MUDUO_BASE_ATOMIC_H #define MUDUO_BASE_ATOMIC_H#include "muduo/base/noncopyable.h"#include <stdint.h>namespace muduo {namespace detail { template<typename T> //可以根據你所需要的類型就行匹配。其實就是模板 class AtomicIntegerT : noncopyable {public:AtomicIntegerT(): value_(0){}// uncomment if you need copying and assignment//// AtomicIntegerT(const AtomicIntegerT& that)// : value_(that.get())// {}//// AtomicIntegerT& operator=(const AtomicIntegerT& that)// {// getAndSet(that.get());// return *this;// }T get(){// in gcc >= 4.7: __atomic_load_n(&value_, __ATOMIC_SEQ_CST)return __sync_val_compare_and_swap(&value_, 0, 0);}T getAndAdd(T x){// in gcc >= 4.7: __atomic_fetch_add(&value_, x, __ATOMIC_SEQ_CST)return __sync_fetch_and_add(&value_, x);}T addAndGet(T x){return getAndAdd(x) + x;}T incrementAndGet(){return addAndGet(1);}T decrementAndGet(){return addAndGet(-1);}void add(T x){getAndAdd(x);}void increment(){incrementAndGet();}void decrement(){decrementAndGet();}T getAndSet(T newValue){// in gcc >= 4.7: __atomic_exchange_n(&value, newValue, __ATOMIC_SEQ_CST)return __sync_lock_test_and_set(&value_, newValue);}private:volatile T value_; }; } // namespace detailtypedef detail::AtomicIntegerT<int32_t> AtomicInt32; typedef detail::AtomicIntegerT<int64_t> AtomicInt64;} // namespace muduo#endif // MUDUO_BASE_ATOMIC_H

?

總結

以上是生活随笔為你收集整理的muduo之Atomic的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。