C++如何定义内联函数?
展开全部
内联函数是指用inline关键字修饰的函数。在类内定义的函数被默认成内联函数。
只要在正常的函数前面加上关键字inline关键字就可以了。
例子:
/**
*类外定义的函数用inline指定为内置函数
*/
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
class CStudent
{
public:
inline void display();
string name;
};
inline void CStudent::display()
{
cout<<"name:"<<name<<endl;
}
int main(int argc, char* argv[])
{
CStudent myStudent;
myStudent.name="Erin";
myStudent.display();
return 0;
}
展开全部
在类中定义的函数是被默认为内联函数的 另外关键字 inline
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
正常的写法是:
void show(int a)
{
priintf("%d",a);
}
int main()
{
for(i=0;i<100;i++)
show(3);
}
定义内联函数的话:只需要在函数前加 inline。 比如
inline void show(int a)
{
priintf("%d",a);
}
这样编译主函数的时候就变成
int main()
{
for(i=0;i<100;i++)
void show(int a)
{
priintf("%d",a);
}
}
由此省了调用函数的时间
void show(int a)
{
priintf("%d",a);
}
int main()
{
for(i=0;i<100;i++)
show(3);
}
定义内联函数的话:只需要在函数前加 inline。 比如
inline void show(int a)
{
priintf("%d",a);
}
这样编译主函数的时候就变成
int main()
{
for(i=0;i<100;i++)
void show(int a)
{
priintf("%d",a);
}
}
由此省了调用函数的时间
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
有两种方式定义内联函数,如下例中,fun1和fun2就是用不同方式定义的内联函数:
class test
{
public:
int fun1()
{
return 1;
}
inline int fun2();
};
int test::fun2()
{
return 2;
}
class test
{
public:
int fun1()
{
return 1;
}
inline int fun2();
};
int test::fun2()
{
return 2;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
inline 返回类型 函数名(形参)
{
函数体
}
{
函数体
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询