Skip to main content

Inline Function // Advantage or Disadvantage in Hindi or English

 "TIME SMART STUDY" में आप सभी का स्वागत है


आज हम बात करेंगे C++ Program के inline function की―


Inline Function—

Inline function में function call replace हो जाता है function code से।

    C++ provides an inline functions to reduce the function call overhead. Inline function is a function that is expanded in line when it is call. When the inline function is called whole code of the inline functions gets inserted or substituted at the point of inline function call.


Advantage—

Execution fast हो जाता है।


Disadvantage―

Program की length increase (ज्यादा) हो जाती है।

Inline function limitation—

  • अगर किसी function में हम looping का use करते हैं तो उसे हम Inline function नही बना सकते ।
  • इसमे static variable का use हम नहीं कर सकते।
  • Function का recursion नहीं होना चाहिए।
  • Switch or goto हम inline function में हम use नही कर सकते।

HOW DOES RECURSIVE FUNCTION WORKS—



INLINE FUNCTION DISADVANTAGES:-


   अगर हम दो variable बना रहें हैं तो हम compile करते है तो function code को attach करना पड़ता हैं।

  • When inline function body is substituted at the point of function call, total number of variables used by the function also get inserted. So the no of register going to be used for the variable will also get increased.
  • If you use too many inline function then the size of binary executable file will be large, because of the dublication of same code.

अगर आपको ये पोस्ट अच्छी लगी हो तो हमे कमेंट कर के जरूर बताएं।

Comments

Popular posts from this blog

What is HTML or HTML tags

HTML 1) HTML stands for Hyper Text Markup Language 2) Created by Ten Berners-Lie in 1991 but published in 1995 3) It is Client side web technology. 4) It has predefined elements are called tags, used to"markup" a text documents. HTML TAGS 1 <html>_____</html>     Declare the Web page to be written in HTML. 2 <head>_____</head>       Delimits the pages head. 3 <title>______</title>       Defines the title.(not display on the page) 4 <body>_____</body>      Delimits the pages body. 4 <hn>_____</hn>      Delimits a level in heading. 5 <b>_____</b>      Set in boldface 6 <i>_____</i>       Set in italics. 7 <center>_____</center>      Center on the page horizontal. 8 <ul>_____</ul>     ...

Dalton's Atomic Theory—(Chemistry)

Dalton's Atomic Theory The theory that' all matter is made up of very tiny indivisible particles (atoms)' is called atomic theory of matter. Dalton's put forward his Atomic Theory of matter in 1808. The various postulates of Dalton's atoAto Theory of matter are as follows: All the matter is made up of very small particles called 'atoms'. Atoms cannot be divided. Atoms can neither be created nor destroyed Atoms are of various kinds. There are as many kinds of atoms as are elements. All the atoms of a given element are identical in every respect, having the same mass, size and chemical properties. Atoms of different elements differ in mass, size and chemical properties. Chemical combination between two elements consists in the joining together of atoms of these elements to form molecules of compounds. Drawbacks of Dalton's Atomic Theory It is now known that some of the statements of Dalton's Atomic Theory of matter are not exactly corre...

Operator Overloading // In Hindi or English // C++TUTORIAL

  Operator Overloading आज हम जानेंगे Operator overloading क्या होता है:― Operator Overloading — Operator हमेशा program के datatype के साथ काम करता है। जैसे int, float, char लेकिन जब हम अपना datatype अलग से बनाते हैं, तो इसे ही हम Operator Overloading कहते हैं।       ये user define data type पे काम करता है।अथवा ये हमारे basic data type पे work करता है। In English― T he way operators work for user-defined types like objects and structures. This is known as operator overloading. For example, Suppose we have created three objects c1 , c2 and result from a class named Complex. अगर आपको ये post अच्छी लगी हो तो हमे comment कर के जरूर बताएं।