003
20.11.2003, 11:20 Uhr
typecast
aka loddab (Operator)
|
Ich hab mal ganz kurz ein kleines Testprogramm geschrieben. Probier mal das aus:
C++: |
#include <fstream> #include <vector> #include <iostream>
using namespace std;
class Node { public: int x, y, z; };
int main() { vector<Node> node; Node n; node.push_back(n); ifstream in("t");; int x, y, z; in >> x >> y >> z; node[0].x = x; node[0].y = y; node[0].z = z; cout << node[0].x << " " << node[0].y << " " << node[0].z << endl; }
|
Der Inhalt der Datei t ist
Bei mir funktioniert das ohne Probleme. -- All parts should go together without forcing. ... By all means, do not use a hammer. (IBM maintenance manual, 1925) |