Classification of C # operators

Source: Internet
Author: User

An expression consists of operands and operators. The operator of an expression indicates the operation of the operand. For example, the operator has +,-,/, and new; the operand can be a literal, a field, a current variable, or an expression.

There are three types of operators in C # that are divided by the number of operands that the operator acts on:

A unary operator. The unary operator is used for one operand. The unary operator also includes the prefix operator and the suffix operator.

Two-dollar operator. The binary operator acts on a two-bit operand and inserts the operator in the middle of the operand when used.

Ternary operator. There is only one ternary operator in C #? : "The ternary operator acts on three operands and inserts the operator in the middle of the operand when used."

Examples of using operators are given below:

int x=5,y=10,z;

x + +; Suffix unary operator

--x; Prefix unary operator

Z=x+y; Binary operator

Y= (x>10?0:1); Ternary operator

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.