#include <iostream>
void f(int) {
std::cout << "int" << std::endl;
}
void f(char*) {
std::cout << "char*" << std::endl;
}
/*
*
*/
int main(void) {
f(0);
f(NULL);
f(nullptr);
return 0;
}
int
int
char*
#include <iostream>
void f(int) {
std::cout << "int" << std::endl;
}
void f(char*) {
std::cout << "char*" << std::endl;
}
/*
*
*/
int main(void) {
f(0);
f(NULL);
f(nullptr);
return 0;
}
int
int
char*

被折叠的 条评论
为什么被折叠?