Swift

書式
func 関数名(parameter1: parameter1の型, parameter2: parameter2の型) -> 返り値の型 {
return 返り値
}

サンプルコード ...

Swift

サンプルコード

let cft = for i in stride(from: 0, to: cft.count, by: 1) { print("\(cft)")}

 

Swift

1.引数、戻り値がない
func getSum() {
//some code
}
getSum()

2.引数、戻り値がある
func getSum(intValue: Int,in ...

Swift

サンプルコード

let g = for (key,value) in g { print("\(key) \(value)")}

 

Swift

サンプルコード

let cft = "this is a data"for cc in cft.characters { print(cc)}

 

Swift

サンプルコード

let stations = for (index, cft) in stations.enumerated() { print("\(cft)") }

 

Swift

サンプルコード

//変数交換の変数func swapToValues<T>(_ a: inout T, _ b: inout T) { let tmp = a a = b b = tmp}var cftA = "Aa ...

Swift

サンプルコード
var myString:String? = nil

if myString != nil {
print(myString)
}else{
print(“文字列 ...

Swift

サンプルコード

Class Car { func show() { print("Car test data") }}//Carクラスを継承class Sportscar: Car { func test () { super. ...

Swift

サンプルコード

internal class Sample { internal let cft = "test12345" internal func funcTest() { print(cft) }}

 

Swift

サンプルコード

class Sample { private static var msg = "test data 123456" func funcA() { print(Sample.msg) }} let cft = S ...

Swift

サンプルコード

var counter = 0;//カウンター参照class BaseClass { init() { counter += 1; } deinit { counter -= 1; }}var show: Bas ...

Swift

書式
fileprivate static var 変数名
使用例

class Sample { fileprivate static var msg = "kdfc" func funcA() { print( ...

Swift

使用例
let cftA = NSDecimalNumber(string: “5.14”)
let cftB = NSDecimalNumber(string: “5.13R ...

Swift

書式
for 変数名 in stride(form:最小値,to:最大値,by:値)
使用例

let cInter = 5for cft in stride(from: 0, to: 20, by: cInter ...

Swift

書式

switch 項目名{ case 値: 処理コード fallthrough }

switch文の中で各ケースの処理の実行が終了し,fallthroughを実行すると直下のケースの処理を実行することができます.

Swift

書式
func 関数名(変数名:型)
使用例

func testFunc(person: String) { print("1234, \(person)!")}print("戻り値なしのサンプル")testFu ...

Swift

書式
func 関数名(for 変数名: String) ->String
使用例

//関数1 return省略func funcA(for person: String) -> String { " ...