|
switch (GongNeng)
{
case IDC_RADIO1:
ifstream fin0 (File_Name, ios :: nocreate | ios :: binary
char temp;
fin0.seekg (120, ios :: beg);
fin0.get (temp);
Station_Num = temp;
fin0.close ();
...
case IDC_RADIO2:
break;
case IDC_RADIO3:
break;
}
C:\Documents and Settings\Administrator\Desktop\0104\YourDlg.cpp (351): error C2360: initialization of 't' is skipped by 'case' label
C:\Documents and Settings\Administrator\Desktop\0104\YourDlg.cpp (327): see declaration of 't'
C:\Documents and Settings\Administrator\Desktop\0104\YourDlg.cpp (351): error C2360: initialization of 'fin1' is skipped by 'case' label
C:\Documents and Settings\Administrator\Desktop\0104\YourDlg.cpp (265): see declaration of 'fin1'
C:\Documents and Settings\Administrator\Desktop\0104\YourDlg.cpp (351): error C2360: initialization of 'fin' is skipped by 'case' label
C:\Documents and Settings\Administrator\Desktop\0104\YourDlg.cpp (252): see declaration of 'fin'
C:\Documents and Settings\Administrator\Desktop\0104\YourDlg.cpp (351): error C2360: initialization of 'fin0' is skipped by 'case' label
C:\Documents and Settings\Administrator\Desktop\0104\YourDlg.cpp (244): see declaration of 'fin0' |
|