C++

書式
対象文字列.replace(開始位置,長さ,置換する文字列)
使用例

#include <iostream>using namespace std;int main() { string str ...

C++

1.VS 2012 Ultimate版をインストール

2.MonoGame 3.2をダウンロード

3.MonoGameをインストール

4.MonoGameプロジェクトを作成し、「Hellw

C++

Form1.Designer.cs に下記を追加
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClos ...

C++

処理コード:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
usin ...

C++

サンプルコード:

using System;
using System.Data;
using System.Configuration;
using MySql.Data.MySqlClient; ...

C++

使用例

#include <iostream>using namespace std;int main() { int x = 21; cout << (x == 21); return 0;}

実行 ...

C++

書式
max(a,b)
min(a,b)
使用例

#include <iostream>using namespace std;int main() { cout <<"最大値:" ...

C++

C/C++コード下記:
#include <stdio.h>
#include <string.h>

int str_match (const char * , const char ...

C++

1.C++コード下記:
#include <iostream>
using namespace std;

class A {
public :
A() { std::cout&l ...

C++

@try {
<#Code that can potentially throw an exception#>
}
@catch (NSException *exception) {
< ...

C++

コード下記:
1.NSStringからNSDateへの変換
– (NSDate *)dateFromString:(NSString *)dateString{

NSDateFormatter ...

C++

1、CStringから string
CString strCstrSource(”テスト”);
string strTarget;
strTarget = strCstrSource. ...

C++

説明:
#include <sys/uio.h>
ssize_t readv(int fd, const struct iovec *vector, int count);
ssize_t writ ...

C++

書式
文字列.substr(開始位置)
使用例

#include <iostream>using namespace std;int main() { string target = "arkgame ...

C++

サンプルコード

#include <stdio.h>#include <string> int main() { std::string str; int num = 5678; str = std::t ...

C++

サンプルコード

#include <stdio.h>#include <string> int main() { std::string cftStr = "5678"; int num; num = s ...

C++

サンプルコード

#include <stdio.h>#include <string> int main() { char *numStr; int num = 6789; sprintf(numStr, ...

C++

書式
文字列.length()
使用例

#include <iostream>using namespace std;int main() { string strA = "arkgame"; cou ...