質問編集履歴

2

変数の指定

2019/12/03 07:45

投稿

woria
woria

スコア36

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,11 @@
10
10
 
11
11
 
12
12
 
13
- ### ループの中でSet,Closeすることで、変数のスコープを狭める場合
13
+ ### ループの中でSet,Closeする
14
+
15
+
16
+
17
+ 変数のスコープを狭めたい場合
14
18
 
15
19
 
16
20
 
@@ -18,7 +22,9 @@
18
22
 
19
23
 
20
24
 
21
- For Each str In var
25
+ Const strCSVPath = "hoge.csv"
26
+
27
+ For Each str In Array("a","b","c")
22
28
 
23
29
  Dim FSO: Set FSO = CreateObject("Scripting.FileSystemObject")
24
30
 
@@ -36,7 +42,11 @@
36
42
 
37
43
 
38
44
 
39
- ### ループの外でSet,Closeすることで、Set,Closeの回数を減らした場合
45
+ ### ループの外でSet,Closeする
46
+
47
+
48
+
49
+ Set,Closeの回数を減らしたい場合
40
50
 
41
51
 
42
52
 
@@ -44,13 +54,15 @@
44
54
 
45
55
 
46
56
 
57
+ Const strCSVPath = "hoge.csv"
58
+
47
59
  Dim FSO: Set FSO = CreateObject("Scripting.FileSystemObject")
48
60
 
49
61
  Dim TS: Set TS = FSO.OpenTextFile(strCSVPath, 8)
50
62
 
51
63
 
52
64
 
53
- For Each str In var
65
+ For Each str In Array("a","b","c")
54
66
 
55
67
  TS.WriteLine str
56
68
 

1

題名の変更、コード → コードの例

2019/12/03 07:45

投稿

woria
woria

スコア36

test CHANGED
@@ -1 +1 @@
1
- [VBScript]FSO.OpenTextFileのCloseタイミングによる速度の違い
1
+ [VBScript]FSO.OpenTextFileのSet,Closeタイミングによる速度の違いはありますか?
test CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
 
8
8
 
9
- ## コード
9
+ ## コードの例
10
10
 
11
11
 
12
12