Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » wo ist der fehler??

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
20.09.2005, 17:17 Uhr
~geckoo
Gast


Hallo, folgendes ist mein Code:

C++:
#include <fstream>
#include <iostream>
#include <stdexcept>
#include <vector>
.
.
.
vector<char> v;
.
.
.


44 ifstream inb("X");
45         int  i = 0;
46         bool fileok = true;
47        while ( (!inb.eof()) && (fileok) )
48        {
49        try
50        {
51            char ch;
52            ch = inb.get();
53            if ( ch <> v[i])
54            {
55                fileok = false;
56            }
57        }
58        catch (Exception e)
59        {    }
60        }




und dabei bekomme ich folgende fehlermeldung

Test.h:53: error: syntax error before `;' token
Test.h:57: error: must have at least one catch per try block
Test.h:58: error: syntax error before `;' token
Test.h: At global scope:
TraceTest.h:60: error: parse error at end of saved function text


Kann mir bitte jemand dabei weiterhelfen, weiss einfach nicht mehr waws tun.
danke
cu

Dieser Post wurde am 20.09.2005 um 17:41 Uhr von ao editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
20.09.2005, 19:13 Uhr
imhotep
followed the white rabbit



C++:
#include <fstream>
#include <iostream>
#include <stdexcept>
#include <vector>
.
vector<char> v;

44 ifstream inb("X");
45         int  i = 0;
46         bool fileok = true;
47        while ( (!inb.eof()) && (fileok) )
48        {
49          try
50          {
51              char ch;
52              ch = inb.get();
53              if ( ch != v[i])  //Änderung <> zu !=
54              {
55                  fileok = false;
56              }
57          }
58          catch (int e)
59          {    }
60        }



Versuch das mal
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (ANSI-Standard) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: