Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » Linking Error, hilfe newbie

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
19.08.2005, 14:49 Uhr
rizi



hi, ich habe jetzt ein kleines programm geschrieben!das sieht so aus :
ich habe eine header datei "myhead.h" in der befindet sich eine inline-function.

C++:
#ifndef myhead
#define myhead

inline int probe(int a){
    return  a*2;
    }
#endif



diese rufe ich in meiner test.cpp datei auf!
test.cpp

C++:
#include "myhead.h"
#include "stdafx.h"
#include <string>
#include <iostream>
#include <iomanip>
#using <mscorlib.dll>
using namespace std;

/*namespace myheader{
#include "myhead.h"
}*/

int probe(int);

int _tmain(){
    int erg=0;    
    erg=probe(5); //erg=myheader::probe(5);<-- funktioniert
    cout << erg << endl;
    return 0;
}


vorher includiere ich myhead.h. u. folgende fehlermeldung erscheint:


Code:
"Linking...
test.obj : error LNK2001: unresolved external symbol "int __cdecl probe(int)"
(?probe@@$$FYAHH@Z)
C:\...Projects\test\Debug\test.exe : fatal error LNK1120: 1 unresolved externals"



kompelieren geht nur ausführen geht nicht!
wenn ich jetzt die myhead.h nicht direkt includiere sondern in einen namespace funktioniert das ganze wieso?????

mod edit: benutze die board tags selber

Dieser Post wurde am 19.08.2005 um 17:57 Uhr von Pablo editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
19.08.2005, 15:22 Uhr
(un)wissender
Niveauwart


Nimm int probe(int); aus test.cpp raus.
--
Wer früher stirbt ist länger tot.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
19.08.2005, 18:09 Uhr
FloSoft
Medialer Over-Flow
(Administrator)


sonst erwartet er ein nicht-inline-objekt "probe"
--
class God : public ChuckNorris { };
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
23.08.2005, 00:47 Uhr
~rene1
Gast


sind INLINe-function nicht eh nur innnerhalb von classe erlaubt?
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
23.08.2005, 07:11 Uhr
(un)wissender
Niveauwart


Nein.
--
Wer früher stirbt ist länger tot.
 
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: