Я заметил, что параметры автозаполнения, такие как [Cltr + space] в Visual Studio IDE, могут вставлять только имена функций. Вот пример кода на C ++:
class TestClass
{
public:
explicit TestClass();
virtual ~TestClass();
void callThisMethod(int a, char ch, string s);
}
// TestClass.cpp file
void TestClass:callThisMethod(int a, char ch, string s){.....}
// main.cpp file:
TestClass tc;
tc.callThisMethod(int a, char ch, string s); // here
Итак, есть ли способ вызвать вызовы функций со всеми необходимыми параметрами.