jQuery Mobile

構文
<a href=”#pagePop” data-transition=”pop”>pagePop</a>

サンプルコード

< ...

CSS

構文
/* キーワード値 */
word-spacing: normal;

/* <length> */
word-spacing: 5px;
word-spacing: 0.5 ...

jQuery

構文
<a href=”#pageNext” data-transition=”fade”>pageNext</a>

サンプルコード

& ...

Python

構文
.clear()

サンプルコード
# coding: utf-8

cft = set()

# すべての要素を削除する
cft.clear();
print(cf ...

CSS

構文
/* キーワード値 */
letter-spacing: normal;

/* <length> 値 */
etter-spacing: 0.5em;
letter-spa ...

Java

説明
StringUtils.join(Object array)
char配列をオブジェクトに変換します。

Javaコード

package com.arkgame.study;import org. ...

Python

pythonコード
# coding: utf-8

cftA = {“apple”,”pear”,”CC”}
cftB = {R ...

Python

構文
.remove(要素)

サンプルコード
# coding: utf-8

tt = {10,11,12,13}

tt.remove(12)

print(tt) ...

Python

構文
.discard(要素)

サンプルコード
cft = {10, 21, 12}

cft.discard(21)
print(cft)

結果
{10, 12} ...

Python

サンプルコード
# coding: utf-8

cft = {“red”,”yellow”,”blue”}

cft.add( ...

Python

サンプルコード
x = {“a”, “b”, “c”}
y = {“f”, “d”, “ ...

Python

構文
set.union(set1, set2…)

サンプルコード
x = {“apple”, “banana”, “cherry&# ...

Java

説明
String java.lang.String.join(CharSequence delimiter, Iterable<? extends CharSequence> elements)
パラメー ...

Swift

サンプルコード
let cft = “ABCDE”
for s in cft{
println(“s \(s)”)
}

結果
s A ...

Java

説明
Windowsの場合、改行の値は”\r\n”
Linuxの場合、改行の値は”\n”

Javaコード

package com.arkgame.stu ...

Java

説明
String java.text.MessageFormat.format(String pattern, Object… arguments)
指定されたパターンを使ってMessageFormatを ...

Java

説明
1.java.util.Properties.load(InputStream inStream) throws IOException
ファイル・システム内のパス名nameで指定される実際のファイルへの接続を開 ...

Java

説明
ResourceBundle java.util.ResourceBundle.getBundle(String baseName)
パラメータ:
baseName – リソース・バンドルの基 ...