Home
Language
English
Türkçe
Bahasa Indonesia
About
Privacy Policy
Terms of Service
Pricing
Sign In
Download All
Share
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
プログラミング言語Rubyの語学たんです。言語は特に断りのない限り最新のRuby2系です。基本的には自然言語のたんと同じようにツイートします。2019/09/02 botになりました。中の人 == @asangi_a4ac ※本語学たんはRailsを扱っていません。
コンピュータの中
Joined May 2019
88
Following
231
Followers
25.7K
Posts
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
Rubyのif文では、その後の条件式がfalseかnilでない限りは(たとえゼロであっても)全部thenの方へ処理が進みます。つまり、 if 0 then puts 1 else puts 2 end と書くと、1が表示されます。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
Rubyだと 「文字列(string)化する」はto_sで 「整数(integer)化する」はto_iで 「配列(array)化する」はto_aなので 「語学たん化する」はto_gかもしれません。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
self.kawaii = true if self.kawaii then https://t.co/PXN52UHMJS = false end # コンピュータを片手に唱えてください。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
眠れない時はRubyのクラスを列挙するといいかもしれません。 BasicObject, Object, ARGF.class, Array, Bilding, ... , NameError, NoMethodError, RangeError, FloatDomainError, ... なんだか逆に目が覚めそうですね。
Who to follow
素粒子物理学たん (素粒子論たん。原子核物理・量子力学の学術たん)
@particle_ph_tan
ニャーン(=箱の中にいますニャ。愛称は '素物たん' ですニャ。※注意:箱の中は観測しないでください。#シュレディンガーの猫 ) ▶#素粒子物理学の基礎 / #素粒子論の基礎知識のテスト / #素粒子論の基礎知識のテスト_回答編 / #素粒子論を独学できるYouTube動画
現代シリア語学習たん🇮🇶(アッシリア現代アラム語メイン)/荒見瑠美絵 @ 清瀬事務所所属語学たん
@Suret_LangTan
クルディスタン地域で少数言語として話されている現代シリア語(北西現代アラム語)について、自ら学びながら細々と呟いていきます。特にイラクのニーナワー県やクルド人自治区で用いられ同国の地方公用語のひとつに指定されているアッシリア語(アッシリア現代アラム語)をメインとして扱います。暫定アイコンはカスタムキャスト製
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
mapというメソッドがあります。これは配列など「それぞれ」が定義できる(Enumerable)オブジェクトに対して、その「それぞれ」にその後のブロックにある操作を行った結果を返すメソッドです。例えば、 p [1,2,3].map{|i| i*2} と書くと、 [2,4,6] が出力されます。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
Rubyにはブロックという「関数をパラメータとして渡す」機能があるので、Rubyは関数型に近いところがあるかもしれません。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
他のオブジェクト指向の言語と同じように、メソッド適用は.(ドット)で表します。つまり、obj.metと書くと「objにmetを適用したもの」になります。ドットは左結合なので、obj.met1.met2は「objにmet1を適用し、その後met2を適用したもの」になります。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
Rubyだといろいろなことが1行で書けてしまいます。実際、「スペース区切りで入力された数字の合計を表示する」を1行で書いたのが私のトップ画像のコードです。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
# RubyでHello, World! puts "Hello, World!"
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
Rubyは、島根県松江市在住のまつもとゆきひろ(Matz)によって作られた言語で、簡単に使えるオブジェクト指向のプログラミング言語として作られました。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
Enumerator::LazyのforceはEnumerable#to_aの別名です。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
file = open("hoge.txt")のようにopenの第2引数を省略すると、モードは"r"で開かれます。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
あるクラスKlassのインスタンスを作成するにはhttps://t.co/sQApjMiWE9と書きます。パラメータはnewの後に引数を付けて表します。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
exitは実行中のプログラムを終了させるメソッドですが、begin~rescue~ensure~endの中にある場合はensureに書かれた内容を実行してから終了します。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
Arrayのインスタンスメソッドは、selectとfilterが同じ意味で、mapとcollectが同じ意味です。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
普段よく使う||と&&は短絡評価ですが、|と&は短絡評価しません。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
/\ARuby|ruby\z/は/(\ARuby|ruby\z)/と同じです。\Aと\zも括弧の中に入ることに注意してください。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
String#slice(regexp)を呼び出してマッチする部分がなかった場合、nilを返します。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
Ruby2.7と3.0から、Enumerableモジュールにtallyメソッドが追加されました。このメソッドは、要素ごとの個数を集計したハッシュを返します。
Rubyたん(プログラミング言語たん)
@Ruby_lang_tan
about 3 years ago
グローバル変数やインスタンス変数を文字列の式展開に埋め込むときは、{}を省略して「#$変数名」や「#@変数名」のように書くことができます。
Last Seen Users on Sotwe
mayorrR
Seen from
Malaysia
台北日式男士除毛與舒壓保養
Shinta montok
Seen from
Thailand
แม่เลี้ยง แนวครอบครัว. 🏠 ( รับแลกรี )
Seen from
Thailand
菲斯❤️(收锁 ATM 脚奴🖤 可连麦或语音条 🉑定制视频)
Seen from
Greece
Big Dick Felix
pakdheadyasli
Seen from
Indonesia
القناص
Seen from
Pakistan
Vestidor Futbolero
Seen from
Mexico
incest ibu
Seen from
Indonesia
Trends for you
1
Scott
Under 10K tweets
2
John Bolton
Under 10K tweets
3
Duren
Under 10K tweets
4
#วาดฝันวันวิวาห์EP2
Under 10K tweets
5
Stearns
Under 10K tweets
6
Haiti
Under 10K tweets
7
Joe Doering
Under 10K tweets
8
No. Keep
Under 10K tweets
9
Temporary
Under 10K tweets
10
#FursuitFriday
Under 10K tweets
Most Popular Users
1
Elon Musk
@elonmusk
240.5M followers
2
Barack Obama
@barackobama
119.3M followers
3
Donald J. Trump
@realdonaldtrump
111.7M followers
4
Cristiano Ronaldo
@cristiano
110.4M followers
5
Narendra Modi
@narendramodi
107M followers
6
Rihanna
@rihanna
97.6M followers
7
NASA
@nasa
92.1M followers
8
Justin Bieber
@justinbieber
90.9M followers
9
KATY PERRY
@katyperry
87.5M followers
10
Taylor Swift
@taylorswift13
81.4M followers
11
Lady Gaga
@ladygaga
72.9M followers
12
Kim Kardashian
@kimkardashian
69.7M followers
13
Virat Kohli
@imvkohli
69.7M followers
14
YouTube
@youtube
68.7M followers
15
Bill Gates
@billgates
63.8M followers
16
The Ellen Show
@theellenshow
62.5M followers
17
Neymar Jr
@neymarjr
62.4M followers
18
CNN
@cnn
61.9M followers
19
X
@x
60.8M followers
20
Selena Gomez
@selenagomez
60.6M followers
Olivia
Online
✨
⭐
💫