30/09/2018, 18:53
Đây có phải cách thay thế typedef trong C++ không
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.
Bài liên quan
Hỏi Google thì được SO bảo là như nhau xD
stackoverflow.com
What is the difference between 'typedef' and 'using' in C++11?