2012-02-05から1日間の記事一覧

macPortsとgroovyのインストール

mac

mac OS X LIONで先週やっとXcode4.2のインストールしたので、macPortsを macPortsは、以下のリンクで The MacPorts Project -- Download & Installation Lionをクリックしてダウンロード開始。ダウンロードしたMacPorts-2.0.3.pkgファイルをクリックでインス…

ポインタ

c

cのポインタのサンプル #include <stdio.h> int main(void){ int iv[] = {1000,2000}; int * ip = &iv[0]; for (int i=0; i</stdio.h>

インスタンス生成

objective-cでは、コンストラクタ生成に、以下のように複数の方法で実装可能 違いは、メモリー管理が違うようですが、今はまだ?なのでべんきょうを進めていく上で随時追記する int main (int argc, const char * argv[]) { @autoreleasepool { // NSString …