「C++入門」replaceメソッドで指定位置の文字列を置き換えるサンプル
書式
対象文字列.replace(開始位置,長さ,置換する文字列)
使用例
Windows 7でMonoGame 3.2のインストール
1.VS 2012 Ultimate版をインストール
2.MonoGame 3.2をダウンロード
3.MonoGameをインストール
4.MonoGameプロジェクトを作成し、「Hellw
winformでWindowを閉じる処理方法
Form1.Designer.cs に下記を追加
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClos ...
C#でINIファイルを読み書くサンプルコード
処理コード:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
usin ...
C#でMySQLを操作するサンプルコード
サンプルコード:
using System;
using System.Data;
using System.Configuration;
using MySql.Data.MySqlClient; ...
「C++」==演算子とboolean型を使うサンプル
使用例
#include <iostream>using namespace std;int main() { int x = 21; cout << (x == 21); return 0;}実行 ...
「C++」max()とmin()メソッドの使い方
書式
max(a,b)
min(a,b)
使用例
「C/C++入門」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) {
< ...
「Objective-C入門」NSStringとNSDateの相互変換のサンプルプログラム
コード下記:
1.NSStringからNSDateへの変換
– (NSDate *)dateFromString:(NSString *)dateString{
NSDateFormatter ...
「C++」Cstringとstringの相互変換プログラム
1、CStringから string
CString strCstrSource(”テスト”);
string strTarget;
strTarget = strCstrSource. ...
nginxのwritev関数を利用するサンプルコード
説明:
#include <sys/uio.h>
ssize_t readv(int fd, const struct iovec *vector, int count);
ssize_t writ ...
「C++」substr()で引数の開始位置から最後までの文字を取得するサンプル
書式
文字列.substr(開始位置)
使用例
「C++」to_string()でint型からstring型に変換するサンプル
サンプルコード
#include <stdio.h>#include <string> int main() { std::string str; int num = 5678; str = std::t ...「C++」stoi()でStringからintに変換するサンプル
サンプルコード
#include <stdio.h>#include <string> int main() { std::string cftStr = "5678"; int num; num = s ...「C++」sprintf()でint型からstring型に変換するサンプル
サンプルコード
#include <stdio.h>#include <string> int main() { char *numStr; int num = 6789; sprintf(numStr, ...「C++」length()で文字列の長さを返すサンプル
書式
文字列.length()
使用例