1. Trang chủ
  2. » Công Nghệ Thông Tin

C++14 các kĩ thuật lập trình trong C++14

18 352 2

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 18
Dung lượng 47,79 KB

Nội dung

C++14 Tricks I just write a short version for this article, because its now in the main page. I recommend you to click on Read more » and read more :) Here is a short trick for the short version: I see lots of programmers write code like this one: pair p; vector v; ... p = make_pair(3, 4); v.push_back(4); v.push_back(5); while you can just do this: pair p; vector v; ... p = {3, 4}; v = {4, 5}; 1. Assign value by a pair of {} to a container I see lots of programmers write code like this one: pair p; ... p = make_pair(3, 4); while you can just do this: pair p; ... p = {3, 4}; even a more complex pair pair p; ... p = {3, {a, 8ll}}; What about vector, deque, set and other containers? vector v; v = {1, 2, 5, 2}; for (auto i: v) cout

Ngày đăng: 11/05/2015, 06:14

TỪ KHÓA LIÊN QUAN

TÀI LIỆU CÙNG NGƯỜI DÙNG

TÀI LIỆU LIÊN QUAN

w