const char *cval = "nothing"; // This is right. int *ival = {1, 2, 3, 4}; // This is wrong.
为什么第一个是对的,但第二个是错的?
c++ arrays
arrays ×1
c++ ×1