30/09/2018, 18:53

Đây có phải cách thay thế typedef trong C++ không

Ideone.com

Ideone.com

Ideone is something more than a pastebin; it's an online compiler and debugging tool which allows to compile and run code online in more than 40 programming languages.

#include <iostream>
using namespace std;

int main() {
    // your code goes here
    using byte = unsigned char;
    byte c;
    cin >> c;
    cout << c;
    return 0;
}

Mình có đoạn code như trên, thấy vẫn chạy bình thường.

*grab popcorn* viết 20:59 ngày 30/09/2018

Hỏi Google thì được SO bảo là như nhau xD

stackoverflow.com
Klaim

What is the difference between 'typedef' and 'using' in C++11?

c++, c++11, typedef, using-declaration
asked by Klaim on 02:39AM - 25 May 12

Bài liên quan
0