c++

visual c++ 行番号

c++

ツール>オプション>テキストエディタ>C/C++, Direct3D Shader>全般>行番号

boostライブラリの導入とその簡単な使用方法(C++ split())

Visual Studio C++ 2008にインストールするとします。 http://www.boostpro.com/downloadから最新のインストーラをダウンロード。 導かれるがままにインストールした後、Visual Studioでインクルードの設定。 ツール>オプション>VC++ディレクトリ>ディレ…

STLの<algorithm>を配列などにも適用できる(たとえばmax_element())

c++

#include <iostream> #include <stdlib.h> #include <algorithm> #include <conio.h> using namespace std; const int NUM=100; int main () { int data[NUM]; for(int i=0;i</conio.h></algorithm></stdlib.h></iostream>

stringオブジェクトにスペース付きの文字列を入力("hello world"など)

c++

#include <iostream> #include <conio.h> #include <string> using namespace std; void main(){ string s; getline(cin, s); cout << s << endl; getch();//一時停止 } //cin >> s;で"hello world"と入れてもちぎれる(cout << s;の結果が"hello")</string></conio.h></iostream>

C++でcinの入力時、スペースを含ませたい場合、cin.getline()

c++

#include <iostream> #include <conio.h> using namespace std; void main(){ char line[100]; cin.getline(line, sizeof(line));//スペースを含む入力を、ちぎらず受け付ける cout << "input : " << line << endl; getch();//一時停止 }</conio.h></iostream>

オブジェクトを簡単にcoutで表示(挿入子<<の再定義・オーバーロード)

c++

#include <iostream> #include <sstream> using namespace std; class Base{ private: static int counter; int no; public: Base(){ no=counter; counter++; } int getNo() const{return no;} string to_string() const; }; //オブジェクトの情報を文字列に変換 string Base::t</sstream></iostream>…

クラスのオブジェクトごとに一意の値を与える(使徒No.Xみたいに)

c++

#include <iostream> #include <conio.h> using namespace std; class Base{ private: static int counter; int no; public: Base(){ no=counter; counter++; } int getNo(){return no;} }; int Base::counter=0;//使徒は0号機から const int SITO_MAX=10;//使徒の数 void main</conio.h></iostream>…

STL 入門 second step

英語で書かれているけれど、ほとんどがcodeなので読みやすい。 日本語でSTLの基礎を読んだ後は、 ここを読んでsecond stepとすればよいと思う。 とても分かりやすいし、美しい! http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=standardTemplate…