C++.in.a.Nutshell [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

C++.in.a.Nutshell [Electronic resources] - نسخه متنی

Ray lischner

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید






identifier









id-expression ::= unqualified-id | 
qualified-id
unqualified-id ::= identifier |
operator-function-id | conversion-function-id |
~ class-name | template-id
qualified-id ::= [::] nested-name ::
[template] unqualified-id | :: identifier |
:: operator-function-id | :: template-id
nested-name ::= class-or-namespace-name |
nested-name [:: class-or-namespace-name] |
nested-name [:: template class-name]
class-or-namespace-name ::= class-name |
namespace-name
class-name ::= identifier |
template-id
namespace-name ::= identifier


An entity name can be a simple identifier, an operator name, or a
qualified name. See Chapter 1 for the rules that
apply to valid identifiers. See Chapter 5 for more
information on overloaded operators. See operator
for the rules that apply to operator-function-id
and conversion-function-id.


See Also


class, declarator,
namespace, operator, Chapter 1, Chapter 2

/ 270