如果我们在 C# 中有以下简单代码:
class Program
{
static void Main(string[] args)
{
string x = "Hello World";
test(x);
int y = 101;
test(y);
Console.ReadKey();
}
static void test(object val)
{
Console.WriteLine(val);
}
}
因此,我们有一个引用类型对象作为参数 - 工作正常。如何在 C++ 中做类似的事情?
OT:无需直接输入,我们可以使用var关键字,在 C++ 中存在关键字auto。这里是否有任何类似的引用类型,如对象或某种方式/技巧来证明它?