2014-01-01から1年間の記事一覧

Scala Tutorialsを読む 8 Useful operations

http://scalatutorials.com/tour/interactive_tour_of_scala_useful_operations.html 今日は、8 Useful operations 使える機能ってところかな? Scala has many "syntactic sugars" for many common operations. Scalaには沢山のシンタックスシュガーがあり…

Scala Tutorialsを読む 7 String formatting

今日は、 http://scalatutorials.com/tour/interactive_tour_of_scala_string_formatting.html を読みます。 書くの忘れてたのだけど、C言語のprintf的な物がScalaにもあるよっていう。 printf works as well... printf は同じように動きます... 瞬殺すぎ…

Scala Tutorialsを読む 6 String interpolation

http://scalatutorials.com/tour/interactive_tour_of_scala_string_interpolation.html 今日は、6 String interpolationです。 interpolationは内挿法とかがいいのかな?文字列内挿法? 文字列に式が書ける奴ですね。 interpolationはSwiftでもあったり、Ne…

Scala Tutorialsを読む 5 Printing values

http://scalatutorials.com/tour/interactive_tour_of_scala_printing_values.html 今日は5のPrinting valuesを読みます。 値の出力とかか。 Scala has a "shortcut" to Java's System.out.println ScalaはJavaのSystem.out.printlnのショートカットを持って…

Scala Tutorialsを読む 4 Final Variables

今日は4 Final Variablesを読みます。 http://scalatutorials.com/tour/interactive_tour_of_scala_final_variables.html Final変数ですな。Swift騒ぎで忘れてたよ orz... FInal variables are declared using the val keyword Final変数はvalキーワードを使…

Scala Tutorialsを読む 3

今日は 3 Variables を読みます。 http://scalatutorials.com/tour/interactive_tour_of_scala_variables.html 変数ですね。 Variables are declared using the var keyword 変数はvarキーワードを使って宣言されます。 In many cases, 多くの場合に、 the t…

Scala Tutorialsを読む 2

今日は2を読みます。 http://scalatutorials.com/tour/interactive_tour_of_scala_operators_are_methods.html 2 Operators are methods 演算子はメソッドだ In Scala スカラでは primitives are represented as objects. プリミティブはオブジェクトとし表…

Scala Tutorialsを読む 1

今月は毎日 Scala Tutorialsを読んでみようと思います。 技術的な事を突き詰めていくと、日本語の資料がなくて、 英語の文献を調べないと行けなくなる事がよくあります。 英語の能力が高ければ問題ないのですが、自分のように英語の能力が低い人にとって知ら…