Skip to content

Instantly share code, notes, and snippets.

View shibukk's full-sized avatar
🚀
Thanks to everyone!!

Kazuaki Shibuya shibukk

🚀
Thanks to everyone!!
View GitHub Profile
str = "Hello, world!"
=> "Hello, world!"
# object_idを確認してみる
str.object_id
=> 47382279417420
# 左にビットシフトしてオブジェクトの実際のポインタ値を確認してみる
str.object_id.<<(1).to_s(16)
=> "563017dddc98"
str = "Hello, world!"
=> "Hello, world!"
# object_idを確認してみる
str.object_id
=> 240
# 左にビットシフトしてもオブジェクトの実際のポインタ値を確認できない
str.object_id.<<(1).to_s(16)
=> "1e0"