This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Objective-C | |
#import <MagicalRecord/MagicalRecord.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
オブジェクト指向言語における"オブジェクト"とリレーショナルデータベースにある"レコード"と対応付け(マッピング)すること。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
コンピュータの前処理プログラム、予備処理、つまりコンピュータ処理で中心的なプログラムの条件に合わせる為の事前処理を行う) | |
コンパイラでは、人間の記述したソースコードを機械語に翻訳するが、その前に段階としてソースコードに一定の規則に従って処理を加えるのが、プリプロセッサの役割となる。 | |
要約 | |
#ifndef, #define, #endifと書いてある行は、C言語で二重にヘッダーファイルが読み込まれるのを防ぐのによく使われる方法 | |
このやり方をしないと何度もヘッダーファイルが読み込まれることになって、変数や定数が何度も定義されてしまい、コンパイルエラーになるのです。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Which choice is the output value of the following code: | |
var a = 0 | |
let b = ++a | |
let c = a++ | |
print("\(a) \(b) \(c)") //211 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
多くのプログラミング言語では「0」「0.0」は違う値です。 | |
プログラミング言語によっては、整数型のない言語も存在し、そういう言語では「0」と書いても「0.0」と書いたものとみなされます。 | |
「0」「0.0」を区別する多くの言語においても、「0」「0.0」を比較する場合は整数の「0」は実数の「0.0」に自動変換されて「0.0」になる、それと「0.0」を比較するので比較結果は等しいということになります。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
クラスはSwiftのデータ型を定義する唯一の方法ではありません。 | |
Enumerations = 列挙型 structures = 構造体はクラスと同じ能力を持っていますが、 | |
異なるコンテキストで使う事ができます。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
クラスはSwiftのデータ型を定義する唯一の方法ではありません。 | |
Enumerations = 列挙型 structures = 構造体はクラスと同じ能力を持っていますが、 | |
異なるコンテキストで使う事ができます。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Developer Relations(マーケティング活動) | |
DevRel?? => DevRelは “Developer Relations” の略語 => 外部の開発者とのつながりを形成し、自社製品/サービスの魅力を知ってもらうためのマーケティング活動 => それらの活動をエバンジェリスト活動と言われる!! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
オブジェクト指向プログラミングにおいてプログラムの動作は主に、オブジェクト同士の相互作用に基づいています。 | |
クラスとはそのオブジェクトの設計図と考える事が出来ます。 | |
クラスは、プロパティとメソッドを使用してその動作を定義します。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
後学習の事項 つまり何なのか?? | |
自己署名証明書 | |
中間証明書 |
NewerOlder