2011-09-15 41 views
0

我需要在visual C++ 2008 express版本中使用bigint类。 我编译在Visual C++ 2008 Express中使用BigInt类

1>------ Build started: Project: P Root Test, Configuration: Debug Win32 ------ 
    1>Linking... 
    1>P Root Test.obj : error LNK2019: unresolved external symbol "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl operator<<(class std::basic_ostream<char,struct std::char_traits<char> > &,class BigInteger const &)" ([email protected][email protected][email protected]@[email protected]@@[email protected]@[email protected]@@@Z) referenced in function _main 
    1>P Root Test.obj : error LNK2019: unresolved external symbol "public: void __thiscall BigInteger::operator=(class BigInteger const &)" ([email protected]@[email protected]@Z) referenced in function _main 
    1>P Root Test.obj : error LNK2019: unresolved external symbol "public: __thiscall BigInteger::BigInteger(int)" ([email protected]@[email protected]@Z) referenced in function _main 
    1>P Root Test.obj : error LNK2019: unresolved external symbol "public: void __thiscall BigInteger::multiply(class BigInteger const &,class BigInteger const &)" ([email protected]@@[email protected]@Z) referenced in function "public: class BigInteger __thiscall BigInteger::operator*(class BigInteger const &)const " ([email protected]@[email protected]@@Z) 
    1>G:\My Stuff\# School\Crypto\P Root Test\Debug\P Root Test.exe : fatal error LNK1120: 4 unresolved externals 
    1>Build log was saved at "file://g:\My Stuff\# School\Crypto\P Root Test\P Root Test\Debug\BuildLog.htm" 
    1>P Root Test - 5 error(s), 0 warning(s) 
    ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== 
+1

我是一名编程初学者。你可以说得更详细点吗?你在谈论BigIntegerLibrary吗? – MattK

回答

0

当你检查它在你的项目中定义的BigInteger的图书馆目前越来越这些错误信息?

相关问题