2013-12-05から1日間の記事一覧

コンストラクタの初期化とメンバ変数の初期化

これどういうルールだったか忘れたロベールのp.647 #include<iostream> using namespace std; class ABase { public: ABase() : m_x(0) {} //このコンマなんだっけ virtual ~ABase() {} void Set(int x){ m_x = x;} protected; int m_x; } ロベール本 pp.351-353 コン</iostream>…

Emacsでメジャーモードを書く

http://www.gentei.org/~yuuji/elisp/elisplec.html#SEC1emacs起動 $ emacsC-x bでデフォルトのバッファであるscratchバッファが起動 (C-x C-bやC-x C-fで開くのもOK) ;; This buffer is for notes you don't want to save, and for Lisp evaluation. ;; If …