You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert
プログラミング言語Javaが提供するモニタ同期(synchronized構文)および待機処理(Object#wait)は、再帰ロックのセマンティクスをサポートする。*1 メモ:待機処理でも再帰ロックをサポートする仕様は珍しい?C++標準ライブラリ(→id:yohhoy:20120802)やPOSIX標準ライブラリ(Pthreads)*2では、再帰ミューテックスと条件変数待機の組み合わせは正常動作しない。 class SharedValue { private final Object monitor = new Object(); private int value = 0; public void updateValue() { synchronized (monitor) { // OK: 1回目のモニタロック獲得 //... synchronized (monitor) { // O
This post is part of a regular series of posts where the C++ product team here at Microsoft and other guests answer questions we have received from customers. The questions can be about anything C++ related: MSVC toolset, the standard language and library, the C++ standards committee, isocpp.org, CppCon, etc. Today’s post is by Billy O’Neal. C++17 added support for parallel algorithms to the stand
若干釣りタイトルですが,私が「Rust にはない C++ の良さ」を募ったところ,12 個ほどの優れている点が報告されたので,まとめてみます. 背景 私は 2018/10/08 開催予定の技術書典5で,『C++でできる!OS自作入門』と題して,Clang+LLD で C++ を使って OS 開発する際の注意点とか C++ の活用例を解説する同人誌を書こうと思っています. その下調べもかねて,このようなツイートをしました. C++好きな人!ぜひ,RustにはないC++の良さを教えてください!— C++でOS自作 技術書典5 お05 (@uchan_nos) 2018年8月24日 そうしたら知り合いからこんなリプが飛んできました. これ、まとめてblogにして!— shoma (@shoma) 2018年8月24日 一部の人に参考になるかもしれないのでまとめることにしました.ただしネタ多めです
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く