Java

書式
public boolean matches(String regex)
この文字列が、指定された正規表現と一致するかどうかを判定します。
使用例

package com.arkgame.study ...

Java

書式
for (Map.Entry<String, String> 変数名 : map名.entrySet()) {
使用例

package com.arkgame.study.tm;import j ...

Cmd

1.複数フォルダを作成
書式
md 「フォルダ3」
例 >mkdir test01 test02
サンプルコード

for/L %%n in (1,1,4) do ( md test0%% ...

C++

書式
クラス名::コンストラクタ名()
使用例

#include <string>#include <iostream>using namespace std;class TestA{pr ...

C++

書式
クラス名::メソッド名
使用例

#include <iostream>using namespace std;//親クラスを定義class TestA{public: void getFuncA ...

C++

書式
class クラス : public クラスA, public クラスB
使用例

#include <iostream>using namespace std;//クラスを定義class Tes ...

C++

書式
class クラス : public クラスA, public クラスB
使用例

#include <iostream>using namespace std;//クラスを定義class Tes ...

C++

書式
class クラス名:親クラス
使用例

#include <iostream>using namespace std;//親クラスAを定義class TestA{public: void get ...

C++

書式
class 子クラス: public 親クラス
使用例

#include <iostream>#include <string>using namespace std;//親クラスc ...

XML

書式
DOMParser インターフェイスは、 XML や HTML ソースコードを文字列から DOM の Document に解釈する機能を提供します。
使用例

<!DOCTYPE html>< ...

XML

使用例

<!DOCTYPE html><html><body><h1 id="cft">This is a Heading</h1><button type="b ...

C++

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

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

Python

説明
リスト名.sorted()
使用例

lstA = lstB = print("リストAのソート結果:")print(sorted(lstA))print("リストBのソート結果:")print(sorted ...

C++

説明
rfindは最後に出現した位置を返します。
対象文字列.rfind(検索する文字列)
使用例

include <iostream>using namespace std;int main ...

C++

使用例

#include <iostream>using namespace std;int main() { int x = 100; int y = 99; cout << "比較演算子の結果"< ...

C++

使用例

#include <iostream>using namespace std;int main() { bool cftA = true; bool cftB = false; cout << c ...

Java

書式
1.try (BufferedReader 変数名A = new BufferedReader(new FileReader(ファイル名)))
2.public FileReader(File file)thro ...

Java

書式
String toString()
このパスの文字列表現を返します。
使用例

package com.arkgame.study.spp;import java.nio.file.Path;impo ...