2013年5月25日土曜日

C++メモ

C++11におけるconstmutableの意味。
physical const logical const
writable mutable
readable(thread-safe) const const
const は、read-only か safe to read concurrently を意味する。physical const かもしれないし、logical const かもしれない。一方、mutable は writable but logically const を意味する。

参照サイト

0 件のコメント:

コメントを投稿