質問編集履歴

4

補足

2021/09/26 06:21

投稿

thesnowman
thesnowman

スコア154

test CHANGED
File without changes
test CHANGED
@@ -25,3 +25,15 @@
25
25
  みなさんはこういうコード書いたりしますか?
26
26
 
27
27
  その場合の目的を教えて下さい。
28
+
29
+
30
+
31
+
32
+
33
+ 補足
34
+
35
+ こういうのを遅延初期化というらしいです、回答者様ありがとうございました。
36
+
37
+ 詳しくはこちらに書かれています。
38
+
39
+ https://thinkit.co.jp/story/2014/07/02/5091

3

微修正

2021/09/26 06:21

投稿

thesnowman
thesnowman

スコア154

test CHANGED
File without changes
test CHANGED
@@ -1,8 +1,6 @@
1
1
  以下みたいなコードをよく見るんですが。
2
2
 
3
- メソッドと同じ名前のインスタンス変数を返しています。
3
+ メソッドと同じ名前のインスタンス変数を返しています。(いわゆるgetterでしょうか。)
4
-
5
- いわゆるgetterでしょうか。
6
4
 
7
5
  ```ruby
8
6
 

2

微修正

2021/09/25 11:36

投稿

thesnowman
thesnowman

スコア154

test CHANGED
File without changes
test CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  def conn
10
10
 
11
- @conn ||= Faraday.new(url: foo)
11
+ @conn ||= Faraday.new(url: "http://example.com")
12
12
 
13
13
  end
14
14
 

1

タグにrailsも追加

2021/09/25 11:36

投稿

thesnowman
thesnowman

スコア154

test CHANGED
File without changes
test CHANGED
File without changes