無事、終了しました! ありがとうございます!
日付 | タイトル | URL |
---|
aaa |
<?php | |
/** | |
* Class SQLBuilder | |
*/ | |
class SQLBuilder | |
{ | |
private $from_table = null; | |
/** @var array */ | |
private $select_columns = []; |
<?php | |
/* ラジコンの抽象クラス */ | |
interface RadioControlCarInterface | |
{ | |
public function forward(); | |
public function back(); | |
} |
// Optional<Wrapped>型のエラー処理イメージ | |
struct Customer { | |
let id: Int | |
let name: String | |
let email: String | |
} | |
func findCustomer(byId id: Int) -> Customer? { | |
let customers = [ |
[ignore] | |
+ .*/node_modules/.* | |
[include] | |
[libs] | |
[lints] | |
[options] |
// Thread の例 | |
import Foundation | |
import PlaygroundSupport | |
// Playground上で非同期処理を有効にする | |
PlaygroundPage.current.needsIndefiniteExecution = true | |
class SubThread: Thread { | |
override func main() { |
// 列挙型のインスタンス化について | |
enum GenderEnum { | |
case man | |
case woman | |
case unisex | |
init?(type genderType: Int) { | |
switch genderType { | |
case 0: | |
self = .man |