472,961 Members | 1,792 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,961 software developers and data experts.

how could i declare & define function in header file

i have just made a test project :(win32 console)

//file : func.h
#ifndef _FUNC_H_
#define _FUNC_H_

void func1()
{
return;
};

void func2()
{
return;
};

#endif

//file : use1.cpp
#include "func.h"

void user1()
{
func1();
func2();
}

//file : use2.cpp
#include "func.h"
void user1()
{
func1();
func2();
}

//file : main.cpp
int main(int argc, char* argv[])
{
return 0;
};

but it failed when linking
Linking...
use2.obj : error LNK2005: "void __cdecl func1(void)" (?func1@@YAXXZ)
already defined in use1.obj
use2.obj : error LNK2005: "void __cdecl func2(void)" (?func2@@YAXXZ)
already defined in use1.obj
Debug/HelloWorld.exe : fatal error LNK1169: one or more multiply
defined symbols found
Error executing link.exe.

but it works if the function is template function. why?

Jan 13 '06 #1
4 13140
Use the 'inline' keyword, that's what it's for.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jan 13 '06 #2
thanks , it works :)

Jan 13 '06 #3

Alf P. Steinbach wrote:
Use the 'inline' keyword, that's what it's for.


Well, the inline keyword wasn't made so you could define functions in a
header instead of a source file...they were made so that you could give
the compiler the hint to inline that function sort of like a safer
macro. You of course know this, but the OP might not. You don't
inline everything so that you can write the code in a header instead of
source file...you inline things that are short and you want to be
fast...no cost of function call. Normally you declare in a header and
define in source file. You don't do this with inline functions because
the compiler needs to know about the body in order to inline the code
and it needs to know this for each object file it compiles....the
linker is not involved.

Jan 13 '06 #4
* ro**********@gmail.com:

Alf P. Steinbach wrote:
Use the 'inline' keyword, that's what it's for.


Well, the inline keyword wasn't made so you could define functions in a
header instead of a source file...they were made so that you could give
the compiler the hint to inline that function sort of like a safer
macro. You of course know this, but the OP might not. You don't
inline everything so that you can write the code in a header instead of
source file...you inline things that are short and you want to be
fast...no cost of function call. Normally you declare in a header and
define in source file. You don't do this with inline functions because
the compiler needs to know about the body in order to inline the code
and it needs to know this for each object file it compiles....the
linker is not involved.


I'm sorry, but that's incorrect in almost all respects except the
historical.

However, it's a very very common misconception, and so it's nothing to be
ashamed of not knowing.

First, the inline keyword does not, in practice, give any reliable
optimization hint: it is primarily in support of the one-definition rule,
and not for optimization.

Second, with a modern optimizing compiler there's no point in inlining
things that are short, because the compiler does that if you instruct it
optimize for speed and such inlining will increase speed (the compiler is
generally much better at determining that than the programmer).

Third, to do reliable machine code level inlining you'll have to use
compiler-specific means instead of the 'inline' keyword -- however, as
explained in the previous paragraph, that may not always be wise.

Fourth, with a modern compiler the linker is indeed involved in inlining
(look up "whole program optimization"), which then has nothing to do with
the keyword 'inline'.

Fifth, the compiler (+ linker) need not then have access to the textual
function definition to do machine code inlining.

And so on.

The upshot is to use 'inline' for the case of function definitions in header
files, and possibly also for self-documenting code (telling the _programmer_
that "I expect this to be inlined, use freely without thinking of cost") and
not for misguided optimization where it generally doesn't work, and where if
it works it may have the opposite effect of what you want, _preventing_ the
old compiler from doing a reasonable optimization.

Hope this helps,

- Alf

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jan 13 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: trying_to_learn | last post by:
im in the primary stages of learning C++. The book im learning from says Dont use using namespace.. directive in header file However im trying to make the following header file.I need to include...
1
by: Travis Stewart | last post by:
Hi, I've been working on some software to control an older GPIB card for the past couple of weeks. I have function prototypes in a header file pc-mate2.h and the functions are defined in...
3
by: Sujan Datta | last post by:
What are the possible effects of modifying an existing header file, which includes bunch of defines, function prototypes and some struct definitions. The structure of the header file looks...
6
by: candy | last post by:
hi all, I just want to know that whether the C header files( like stdio.h,etc which the compiler provides) just contains the function declarations or they also contain some additionalinformation...
6
by: Ravi | last post by:
Hi All: Is there any reason for declaring functions as static in a header file if that header file is going to be included in several other files? The compiler throws a warning for every such...
0
by: Lokkju | last post by:
I am pretty much lost here - I am trying to create a managed c++ wrapper for this dll, so that I can use it from c#/vb.net, however, it does not conform to any standard style of coding I have seen....
15
by: Geoff Cox | last post by:
Hello, Can I separately declare and initialize a string array? How and where would I do it in the code below? It was created using Visual C++ 2005 Express Beta 2 ... In C# I would have ...
3
by: thirunavukarasukm | last post by:
hai i want declare imports system.net -----header file in javascript <script> //// in this section how to declare imports system.net <script>
1
by: AnagJohari | last post by:
please tell me how ro define a header file for a perticular function so i can use in another file please explain by giving example of any simple function suppose like addition of number just wanna...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.