回答編集履歴
1
コード短縮
test
CHANGED
@@ -2,10 +2,10 @@
|
|
2
2
|
|
3
3
|
```C++
|
4
4
|
|
5
|
-
|
5
|
+
std::vector<std::unique_ptr<int>> temp(10);
|
6
6
|
|
7
|
-
|
7
|
+
for(std::unique_ptr<int>& p : temp) {p.reset(new int[100]());}
|
8
8
|
|
9
|
-
|
9
|
+
temp[1].get()[3] = 123;
|
10
10
|
|
11
11
|
```
|