473,804 Members | 3,138 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C++ An Inline Function Question

Hi
I have a little problem regarding inline functions ,does declaring a
function inside the class definition make it inline or not.

Sep 21 '07 #1
9 3419
On 21 Sep, 12:31, lucifer <umeshktan...@g mail.comwrote:
Hi
I have a little problem regarding inline functions ,does declaring a
function inside the class definition make it inline or not.
It makes it logically inline, in that you won't get multiple
definition link errors, but it's up to the compiler whether it is
actually physically inlined into the code.

If the function is virtual and coded inside the class definition it's
almost certain it won't be inlined in reality because at the point of
call it might not be this particular implementation that is going to
be invoked.

Sep 21 '07 #2
On Sep 21, 4:31 pm, lucifer <umeshktan...@g mail.comwrote:
Hi
I have a little problem regarding inline functions ,does declaring a
function inside the class definition make it inline or not.
No. See FAQ http://www.parashift.com/c++-faq-lit...s.html#faq-9.7

Sep 21 '07 #3
On Sep 21, 1:31 pm, lucifer <umeshktan...@g mail.comwrote:
Hi
I have a little problem regarding inline functions ,does declaring a
function inside the class definition make it inline or not.
It's the same as if you defined the function with the inline keyword
outside of the class. Whether this results in the function being
inlined is up to the compiler.

Sep 21 '07 #4
On 2007-09-21 07:31:13 -0400, lucifer <um**********@g mail.comsaid:
Hi
I have a little problem regarding inline functions ,does declaring a
function inside the class definition make it inline or not.
The standard says: "A function defined within a class definition is an
inline function." [dcl.fct.spec]/3.

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Sep 21 '07 #5
On Sep 21, 2:31 pm, lucifer <umeshktan...@g mail.comwrote:
Hi
I have a little problem regarding inline functions ,does declaring a
function inside the class definition make it inline or not.
It depends. C++ standard does not guarantee that function or method
will be inlined. In other words, "inline" keyword is just a suggestion
to your compiler. For example, some compilers may inline function or
method even without that keyword when optimizing your code.

Sep 21 '07 #6
On Sep 21, 2:31 pm, lucifer <umeshktan...@g mail.comwrote:
Hi
I have a little problem regarding inline functions ,does declaring a
function inside the class definition make it inline or not.
Here is what parashift says:

When you declare an inline member function, it looks just like a
normal member function:

class Fred {
public:
void f(int i, char c);
};

But when you define an inline member function, you prepend the member
function's definition with the keyword inline, and you put the
definition into a header file:

inline
void Fred::f(int i, char c)
{
...
}

It's usually imperative that the function's definition (the part
between the {...}) be placed in a header file. If you put the inline
function's definition into a .cpp file, and if it is called from some
other .cpp file, you'll get an "unresolved external" error from the
linker.

Sep 21 '07 #7
On 2007-09-21 10:15:38 -0400, "D. Susman" <de**********@g mail.comsaid:
On Sep 21, 2:31 pm, lucifer <umeshktan...@g mail.comwrote:
>Hi
I have a little problem regarding inline functions ,does declaring a
function inside the class definition make it inline or not.

Here is what parashift says:

When you declare an inline member function, it looks just like a
normal member function:
That's one way to declare an inline member function, but it's not the
only way. As I mentioned earlier, defining the function inside the
class definition also makes it inline.

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Sep 21 '07 #8
lucifer wrote:
Hi
I have a little problem regarding inline functions ,does declaring a
function inside the class definition make it inline or not.
Depends on what you mean by "makes it inline". If you mean if it's
equivalent to an inline defined function then yes. If you mean if that
actually makes the compiler inline the function (ie put its code at the
call place instead of actually calling it) then you don't know. AFAIK the
ISO C++ standard does not guarantee any inlining taking place in either
case (having the function definition in the class definition or as an
inline definition).

In practice, if using a modern compiler AND compiling with optimization AND
if the function is "small enough" then it should be inlined.

--
Dizzy

Sep 21 '07 #9
Vl************* ****@gmail.com wrote:
It depends. C++ standard does not guarantee that function or method
will be inlined. In other words, "inline" keyword is just a suggestion
to your compiler. For example, some compilers may inline function or
method even without that keyword when optimizing your code.
'inline' has to do with linking, and yes, a function implemented in
the declaration of the class is inline.
Sep 21 '07 #10

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

Similar topics

20
3158
by: Grumble | last post by:
Hello everyone, As far as I understand, the 'inline' keyword is a hint for the compiler to consider the function in question as a candidate for inlining, yes? What happens when a function with extern linkage is inlined? Should the compiler still export the function? Or is an inlined function implicitly static?
4
1824
by: Tony Johansson | last post by:
Hello experts! I'm reading a book about C++ and there is something about inline that the book says that is unclear for me. The book says the following "Because inline functions are expanded at compile time, definitions of these functions, unlike other definitions, cannot be separately compiled and must be placed in header files. This creates a problem if the compiler does not actually inline a
5
1951
by: Tony Johansson | last post by:
Hello experts! I reading a book called programming with design pattern revealed by Tomasz Muldner and here I read something that sound strange. Here is the whole section: It says" Because inline functions are expanded at compile time, definitions of these functions, unlike other definitions cannot be separately compiled and must be
8
1748
by: John Ratliff | last post by:
Can the compiler ever inline a method when there is a pointer to the member used? Thanks, --John Ratliff
7
16133
by: Wu Shaohua | last post by:
Hi Guys, 1. As we know usually we should not define a constructor as inline. I also learned if we define a member function inside the class this member function will be automatically be inline'ed. My question is: If I define a constructor (including its body) or another large member function inside the class, the constructor or the member function is inline or not? why? 2. I learned that if the member function is big we should not...
7
3174
by: ypjofficial | last post by:
Hello All, Inline before a function definition is just a request to the compiler to make the function inline. The compiler may or maynot make it inline.. My question is ..is there any way by which I can find at runtime whether the particular function which is marked as inline,is made inline or is treated like other function by the compiler ?
25
2032
by: toton | last post by:
Hi, As inline is not mandetory, it depends on compiler to inline certain function (or using switch like fior GCC), my question is there any scope for inlining when it is not declared as inline function? i.e compiler may choose not to inline certain inline function, but is it free to choose a non inline function to inline it? I have some simple one line get function, and index operators which I want to get inlined. But due to some problem...
12
676
by: sam_cit | last post by:
Hi Everyone, I have few questions on inline functions, when i declare a function as inline, is it for sure that the compiler would replace the function call with the actual body of the function? or is it a call taken by compiler? Second, i see that it is same as what Macro's used to do for c, if so what is the advantage for going in for inline functions than to Macros?
14
2337
by: jg | last post by:
Does C++ standard require an inline function be generated all the time ? For example, #include <iostream> using namespace std; inline int foo() {
6
4069
by: Laurent Deniau | last post by:
When I compile the code below with gcc -std=c99 -W -Wall -pedantic -O3 -Winline, it reports the following: variadic.c: In function ‘fv’: variadic.c:12: warning: function ‘fv’ can never be inlined because it uses variable argument lists variadic.c: In function ‘vf’: variadic.c:12: warning: inlining failed in call to ‘fv’: function not inlinable variadic.c:27: warning: called from here
0
9706
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9579
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10577
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10332
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10320
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7620
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5521
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4299
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3820
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.