--- title: "Expressions (C++) | Microsoft Docs" ms.custom: "" ms.date: "11/04/2016" ms.reviewer: "" ms.suite: "" ms.technology: - "cpp-language" ms.tgt_pltfrm: "" ms.topic: "index-page " dev_langs: - "C++" helpviewer_keywords: - "expressions [C++]" ms.assetid: aaa1f250-7185-4113-b682-3f5e995943d1 caps.latest.revision: 7 author: "mikeblome" ms.author: "mblome" manager: "ghogen" translation.priority.ht: - "cs-cz" - "de-de" - "es-es" - "fr-fr" - "it-it" - "ja-jp" - "ko-kr" - "pl-pl" - "pt-br" - "ru-ru" - "tr-tr" - "zh-cn" - "zh-tw" --- # Expressions (C++) This section describes C++ expressions. Expressions are sequences of operators and operands that are used for one or more of these purposes: - Computing a value from the operands. - Designating objects or functions. - Generating "side effects." (Side effects are any actions other than the evaluation of the expression — for example, modifying the value of an object.) In C++, operators can be overloaded and their meanings can be user-defined. However, their precedence and the number of operands they take cannot be modified. This section describes the syntax and semantics of operators as they are supplied with the language, not overloaded. In addition to [types of expressions](../cpp/types-of-expressions.md) and [semantics of expressions](../cpp/semantics-of-expressions.md), the following topics are covered: - [Primary expressions](../cpp/primary-expressions.md) - [Scope resolution operator](../cpp/scope-resolution-operator.md) - [Postfix expressions](../cpp/postfix-expressions.md) - [Expressions with unary operators](../cpp/expressions-with-unary-operators.md) - [Expressions with binary operators](../cpp/expressions-with-binary-operators.md) - [Conditional operator](../cpp/conditional-operator-q.md) - [Constant expressions](../cpp/cpp-constant-expressions.md) - [Expressions with explicit type conversions](http://msdn.microsoft.com/en-us/060ad6b4-9592-4f3e-8509-a20ac84a85ae) - [Casting operators](../cpp/casting-operators.md) - [Run-time type information](../cpp/run-time-type-information.md) Topics on operators in other sections: - [C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md) - [Overloaded operators](../cpp/operator-overloading.md) - [typeid](../windows/typeid-cpp-component-extensions.md) > [!NOTE] > Operators for built-in types cannot be overloaded; their behavior is predefined. ## See Also [C++ Language Reference](../cpp/cpp-language-reference.md)