Arithmetic Operators

Why Trust Techopedia

What Does Arithmetic Operators Mean?

Arithmetic operators, in C#, are operators used to perform arithmetic operations that include multiplication, division, addition and subtraction. With the exception of the subtraction operator, where "-" is used to indicate a negative number, arithmetic operators are binary operators that take two operands. The operands are of numeric data type, and perform in a similar manner as in other languages such as C and C++.

Advertisements

Arithmetic operators "+" and "-" are used to manipulate pointers by adding or subtracting the numeric value to or from the pointers without generating any exception during overflow of the of the pointer’s domain. Arithmetic operators can be overloaded when used with user-defined types to extend the nature of normal operators, thus providing additional functionalities.

Techopedia Explains Arithmetic Operators

The list of arithmetic operators available in C# includes:

  • * : used to perform multiplication of operands of integer, floating-point and decimal type. It returns a multiplicative product of the two operands.
  • / : used to divide operands of integer, floating-point and decimal type. It returns the quotient of its operands.
  • % : used to compute the remainder of the division between two operands, which can beof integer, float, double or decimal type.
  • + : used with different types of operands, resulting in different type of results. In case of numeric and enumeration types, the predefined addition operator calculates the sum of two operands, while the use of string type operand results in a concatenated string. It can also be used to combine delegates of a similar type.
  • – : used with all numeric types like integer, float, decimal and enumeration to calculate the difference between its operands. It can also be used to remove delegates of a similar type.

Advertisements

Related Terms

Margaret Rouse
Editor

Margaret jest nagradzaną technical writerką, nauczycielką i wykładowczynią. Jest znana z tego, że potrafi w prostych słowach pzybliżyć złożone pojęcia techniczne słuchaczom ze świata biznesu. Od dwudziestu lat jej definicje pojęć z dziedziny IT są publikowane przez Que w encyklopedii terminów technologicznych, a także cytowane w artykułach ukazujących się w New York Times, w magazynie Time, USA Today, ZDNet, a także w magazynach PC i Discovery. Margaret dołączyła do zespołu Techopedii w roku 2011. Margaret lubi pomagać znaleźć wspólny język specjalistom ze świata biznesu i IT. W swojej pracy, jak sama mówi, buduje mosty między tymi dwiema domenami, w ten…