我理解在 C 中,运算符 ^ 用于按位 EX-OR。在其中一个 C++ 代码中,我看到了使用此运算符的以下行:
using namespace System::Threading;
public ref class Expert : public System::Windows::Forms::Form
{
int i ;
float a ;
public:
int count;
Thread^ th;
}
这里的 ^ 是什么意思?