English 中文(简体)
是否对自由固定功能有任何好处?
原标题:Are there any advantages to making a free static function?
  • 时间:2011-09-30 12:54:55
  •  标签:
  • c++

我有一份<代码>.cpp文档,有一些固定的免费功能。 我知道,这如何有助于在主人档案中,但是由于电灯没有包括在任何地方,那么点是什么? 它是否有任何好处?

最佳回答

宣布免费职能为static,这使它们的内部联系,从而使汇编者能够更积极优化,因为现在保证在TU之外的任何人都不会看到这一功能。 例如,由于没有必要提供可链接的版本,这一功能可能完全从集会上消失,并遍布各地。

当然,这也稍微改变了语义,因为允许你在不同的电算表中拥有不同名词的固定功能,而对非固定功能有多种定义则是错误。

问题回答

由于评论箱太小,无法解释为什么你在推理方面有严重错误,因此,我把它当作一个社区答案。 就只有头的职能而言,<代码>static 基本无用,因为任何包括头盔的人都将获得不同功能。 这意味着你将重复编辑为每项职能创建的法典(除非链接员能够合并法典,但我知道,这极不可能);更糟糕的是,如果该功能有地方静态的话,这些地方的每一个都会不同,因此,每个地方可能出现多重初始化,要求从不同的包容性中作出定义。 不好。

您需要的是inline (non-staticinline>>,这意味着每一标题的列入将界定相同的功能,现代链接器能够不重复为static所做的每一定义的代码。 (在许多情况下,C++) 标准甚至要求它们这样做,但只从所有列入规定的所有定义中拿出一份编码。

由于第一个项目涉及的问题引起了我的头脑中的一些巨大的问题,因此,只是出于秩序的考虑。

但是,由于电灯不在任何地方,

我强烈希望,你永远不会有<条码>。 加工商对来源与头主之间的区别不予以注意。 这种区别在很大程度上有利于人类,而不是编纂者。 您从来不应有<代码>#include 来源档案 任何地方<>。

我有一份自动文件,有一些固定的免费功能。 我知道,这将如何在标题档案中帮助......。

如何帮助?

如果这些自由职能有外部联系,你将宣布非法定自由职能为负责人。 宣布(但并未界定)在头脑中固定的自由功能,无助。 这是一种障碍。 你们希望把注意力放在帮助你和其他方案者理解某种出口内容的头上。 这些静态自由功能不是出口内容。 您可以确定负责人的免费职能,从而使其出口内容,但标准做法是使用<条码>。 关键词而不是<代码>static

就你在来源档案中的固定自由职能而言,你可能希望考虑将这些职能的申报放在源档案的顶端(但不是标题)。 这有助于改善可理解性。 如果没有这些申报,源文档的组织将看帕斯卡什,而低级职能则首先确定。 大多数人喜欢自上而下的介绍。 宣布这些职能首先可以采用自上而下的战略。 要么是内部战略,要么是任何战略,使功能最容易理解。





相关问题
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?