case useDefaultKeys
Discussion 議論
Camel-case and snake-case are two common approaches for combining words when naming parts of an API. The Swift API Design Guidelines recommend using camel-case names. Some JSON APIs adopt snake-case; use this strategy when you encounter such an API. キャメルケースとスネークケースは、APIの部品に名前を付ける場合に単語を結合するための2つの一般的な取り組み方です。Swift API Design Guidelinesは、キャメルケース名を使うことを推奨します。いくつかのJSON APIはスネークケースを採用します;あなたがそのようなAPIに出くわす場合はこの戦略を使ってください。
This strategy uses uppercase
and lowercase
to determine the boundaries between words, and the system
locale when converting uppercase letters to lowercase letters.
この戦略は、単語間の境界を決めるのにuppercase
とlowercase
を、そしてアッパーケースをローワケース表音文字に変換している時にsystem
ロケールを使います。
This strategy follows these steps to convert key names to snake-case: この戦略は、以下の3つの段階に従ってキー名をスネークケースに変換します:
Split the name into words, preserving leading or trailing underscores. 名前を単語へと分割します、先導するまたは後続するアンダースコアを保全します。
Insert an underscore between each word. 1つのアンダースコアを各単語の間に挿入します。
Convert the resulting string to lowercase. 結果文字列をローワケースに変換します。
The following examples show the result of applying this strategy: 以下の例は、この戦略を適用する結果を示します:
fee
Fi Fo Fum Converts to:
fee
次に変換:_fi _fo _fum fee
_fi _fo _fum fee
_fi _fo _fum Converts to:
fee
次に変換:_fi _fo _fum fee
_fi _fo _fum xml
Contents Converts to:
xml
次に変換:_contents xml
_contents
The example below shows how properties on the Olympic
structure convert to snake-case when encoded as keys in a JSON object.
下の例は、どのようにOlympic
構造体上のプロパティーそれらが、JSONオブジェクトの中のキーとして符号化される時に、スネークケースに切り換わるかを示します。