반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Django column 값 가져오기
- table cell size
- Django 특정 값 가져오기
- html cell size
- Dependency
- table tag
- Django
- DI
- Dependency Injection
- html cell
- html
- Spring
Archives
- Today
- Total
emluy 개발 일기
C++ - vector<string> 복사 & cout 으로 출력 본문
SMALL
#include <string>
#include <vector>
#include <iostream>
using namespace std;
int main() {
vector<string> s1{ "hello","hi" };
vector<string> s2 = s1;
cout << *s2.begin();
}
또는
#include <string>
#include <vector>
#include <iostream>
using namespace std;
int main() {
vector<string> s1{ "hello","hi" };
vector<string> s2 = s1;
vector<string>::iterator iter;
iter = s2.begin();
cout << *iter;
}
또는
#include <string>
#include <vector>
#include <iostream>
using namespace std;
int main() {
vector<string> s1{ "hello","hi" };
vector<string> s2 = s1;
cout << s2.at(0);
}
=> hello 가 출력됨
반응형
'알고리즘 > c, c++' 카테고리의 다른 글
C++ - (프로그래머스) BFS/DFS 여행경로 (0) | 2020.10.17 |
---|---|
C++ - (프로그래머스) BFS/DFS 네트워크 (0) | 2020.10.16 |
C++ - (프로그래머스) 단어변환 (0) | 2020.10.16 |
DFS, BFS 정리 (0) | 2020.10.16 |
C++ - (백준) 14499번 주사위 굴리기 (0) | 2020.10.10 |
Comments