你说的对。
The top-level const and volatile qualifiers should be ignored for the purposes of name mangling.
https://stackoverflow.com/questions/36532687/is-function-parameter-constness-mismatch-allowed
- 来自 水木社区APP v3.5.6
【 在 z16166 的大作中提到: 】
: 能,我试过才发的
:
:
: void print(const int a);
:
: int wmain(int argc, WCHAR **argv) {
: const int a = 1;
: print(a);
: return 0;
: }
:
: void print(int a) {
: scanf_s("%u", &a);
: printf("%u\n", a);
: }
--
FROM 183.179.53.*