forked from codenuri/TEMPLATE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVector.cpp
36 lines (32 loc) · 810 Bytes
/
Vector.cpp
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
31
32
33
34
35
36
/*
* HOME : ecourse.co.kr
* EMAIL : smkang @ codenuri.co.kr
* COURSENAME : C++ Template Programming
* MODULE : Vector.cpp
* Copyright (C) 2017 CODENURI Inc. All rights reserved.
*/
#include <iostream>
#include <list>
using namespace std;
// C++17. class template type deduction
template<typename T> class Vector
{
T* buff;
int sz;
public:
Vector() {}
Vector(int s, T v) {}
template<typename C> Vector(const C& c) {};
};
// class template type deduction guide
Vector()->Vector<int>;
template<typename C> Vector(const C& c)->Vector< ? >;
int main()
{
Vector<int> v1(10, 3);
Vector v2(10, 3); // C++14±îÁö error. C++17 ºÎÅÍ °¡´É.
// g++ -std=c++1z
Vector v3;
list<int> s = { 1,2,3 };
// Vetor v4(s); // deductioni guide ÇÊ¿ä
}