unline而不是outline [英] unline instead of outline

查看:89
本文介绍了unline而不是outline的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当C ++给程序员

显式控制扩展

代码时,它需要一个新的说明符。

如果''大纲''作为说明者太多

不合适,人们可能会考虑将其作为内联的对应部分取消




class Cloud

{

public:unline rain()

{

// 1400行下雨代码(跳过)

}};


-X

When C++ gives the programmer
explicit control over the expansion
of code, it needs a new specifier.
If ''outline'' as a specifier is too much
out-of-line, one might consider unline
as the counter part of inline.

class Cloud
{
public:unline rain()
{
//1400 lines of raining code (skipped)
}};

-X

推荐答案

代码中的错字。这是怎么回事
应该是:


class Cloud

{

public:unline void下雨()

{

// 1400行下雨代码(跳过)

}};


-X
Typo in the code. Here is how it
should be:

class Cloud
{
public:unline void rain()
{
//1400 lines of raining code (skipped)
}};

-X


AM>一个人可能会考虑取消上线

AM>作为内联的对应物。


还有其他建议,特别是

!内联或〜内联。让我们尝试来自所有人的味道




class Cloud {unline void rain(){}};

class Cloud {outline void rain(){}};

class Cloud {!inline void rain(){}};

class Cloud {~inline void rain(){ } $;

-X
AM> one might consider unline
AM> as the counterpart of inline.

There are other suggestions, notably
!inline or ~inline. Lets have a taste
from all of them:

class Cloud{unline void rain(){}};
class Cloud{outline void rain(){}};
class Cloud{!inline void rain(){}};
class Cloud{~inline void rain(){}};

-X


" Agent Mulder" < MB ******************* @ home.nl>写道:
"Agent Mulder" <mb*******************@home.nl> wrote :
AM>一个人可能会考虑取消上线
AM>作为内联的对应物。

还有其他建议,特别是
!内联或〜内联。让我们对所有人都有一种品味:

class Cloud {unline void rain(){}};
class Cloud {outline void rain(){}};
class Cloud {!inline void rain(){}};
class Cloud {~inline void rain(){}};
AM> one might consider unline
AM> as the counterpart of inline.

There are other suggestions, notably
!inline or ~inline. Lets have a taste
from all of them:

class Cloud{unline void rain(){}};
class Cloud{outline void rain(){}};
class Cloud{!inline void rain(){}};
class Cloud{~inline void rain(){}};




I认为发布这些建议的最佳位置是comp.std.c ++;那个

新闻组致力于设计和标准化C ++

语言。

-

Peter van Merkerk

peter.van.merkerk(at)dse.nl



I think the best place to post these suggestions is comp.std.c++; that
newsgroup is dedicated to the design and standardization of the C++
language.
--
Peter van Merkerk
peter.van.merkerk(at)dse.nl


这篇关于unline而不是outline的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆