English 中文(简体)
与有在线功能的固定图书馆连接的问题
原标题:Problem with linking against a static library which has inline functions

i 有一个固定的图书馆(除其他事项外)执行一个狭小的职能,只从一个星座桌上收回一部分。 这项职能在图书馆内任何地方都没有被称作,但仍被宣布为<条码>。 为了明确起见,它希望:

namespace flow
{
    inline const char* GetName( BYTE methodType );
}

执行:

const char* flow::GetName( BYTE methodType )
{
    if ( methodType < 5 )
        return cszNameTable[ methodType ];

    return NULL;
}

在另一个项目中,与这一图书馆连接一米。 我有正确的卷宗,我有<代码>使用名称空间流;。 问题在于,我错失了联系人:

error LNK2001: unresolved external symbol "char const * __cdecl flow::GetName(unsigned char)" (?GetName@flow@@YAPBDE@Z)

现在,我很容易通过从静态图书馆的功能声明中删除“在线”关键词来解决这一问题。 因此,我的问题是:

<>1> 为什么出现这一错误? 如何在不修改静态图书馆来源代码的情况下加以固定(不删除网上关键词)?

<>2> 使用<代码>inline的益处 静态图书馆功能的关键词是,未在图书馆内打上? <代码>inline 关键词在将图书馆与另一个项目联系起来时具有任何影响(即认为这样做,但并不确定)?

最佳回答

(1) 为什么出现这一错误? 如何在不修改静态图书馆来源代码的情况下加以固定(不删除网上关键词)?

<><>>>> 声明<>>/strong>功能为inline。 页: 1 他们是:

namespace flow
{
    inline const char* GetName( BYTE methodType )
    {
        if ( methodType < 5 )
            return cszNameTable[ methodType ];

        return NULL;
    }
}

2) 在图书馆本身内部没有被称作的静态图书馆功能中使用在线关键词有什么好处? 在将图书馆与另一个项目连接起来时,网上关键词是否具有任何影响(即认为它确实如此,但并不肯定)?

<inline的效应是,如果标题是,则您可以和在标题内界定该功能,因为<>>><>>>><>>>>>------>--------->--------------------------------------> >的效应必须是可见的。

问题回答

它是一个老话题,但有些人可能仍然想知道:

声明(h file) :

const char* flow::GetName( BYTE methodType )

执行(文件):

extern inline const char* flow::GetName( BYTE methodType )
{
    if ( methodType < 5 )
        return cszNameTable[ methodType ];

    return NULL;
}




相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?