我倒,写了个小小的C++测试程序,竟然被瑞星当病毒给杀了!

这是代码:
#include  < iostream >
#include 
< stdlib.h >

using   namespace  std;

typedef 
struct  MyStruct {
  
int a;
}
;

void  TestConstCase()
{
  
const MyStruct st = {100};
  
  (const_cast
<MyStruct *>(&st))->a--;
  
  cout
<<st.a<<endl;
}


int  main( int  argc,  char   * argv[])
{
  TestConstCase();
  
  system(
"PAUSE");    
  
return 0;
}

我倒,写了个小小的C++测试程序,竟然被瑞星当病毒给杀了!

你可能感兴趣的:(C++)