Arithmetic e String Operations |
- Per generare le nuove informazioni dai valori di originale, i valori di dati di variabili e di costante letterale sono coinvolti nei funzionamenti di elaborazione.
- I due sensi pi� comuni maneggiare le variabili ed i costanti sono con i funzionamenti della stringa e di aritmetica.
- A contruct queste dichiarazione d'elaborazione, o espressioni, aritmetica di base visiva dei rifornimenti ed operatori della stringa.
|
Operatori aritmetici
|
Molta di elaborazione dell'informazione coinvolge applicare l'aritmetica ai tipi di dati numerici ed i valori sono aggiunti, sottratti, moltiplicati e sono divisi per generare i risultati, risultati finali o valori intermedi che sono coinvolti in ulteriori funzionamenti aritmetici. Per questi rifornimenti di base visivi di scopi un insieme di sette operatori aritmetici indicati nella seguente tabella.
|
Operator |
Use |
+ |
Addition. Adds the values appearing on the two sides of the
operator. |
- |
Subtraction. Subtracts the value on the right of the operator from
the value on the left of the operator. |
* |
Multiplication. Multiplies the values appearing on the two sides of
the operator. |
/ |
Division. Divides the value on the left of the operator (dividend)
by the value on the right of the operator (divisor). |
\ |
Integer Division. Divides the value on the left of the operator by
the value on the right of the operator, giving an Integer result. |
Mod |
Modulo Division. Returns the remainder of the division of the
value on the left of the operator by the value on the right of the
operator. |
^ |
Exponentiation. Raises the value on the left of the operator to the
power on the right of the operator. |
|
Esempio
|
Dim Answer1, Answer2 As Single
Answer1 = 1 + (2 / 3)
Answer2 = (1 + 2) / 3)
|
|
String Operators
|
Visual Basic supplies the concatenation operator (&) to put together individual data strings to create a longer string of those combinations and the Like operator looks for matching characters in a string.
|
Operator |
Use |
& or + |
Concatenation. Appends the string value appearing on the right of
the operator to the string value on the left of the operator. |
Like |
Determines whether a string matches a given pattern. |
|
Keywords:
Arithmetic and String Operations in VB.NET,
visual basic string,
java string,
bash arithmetic,
arithmetic operator,
c++ string,
java arithmetic,
arithmetic operators,
arithmetic function,
php string,
unix arithmetic,
perl string,
c++ arithmetic,
string compare,
division operations,
javascript string,
math arithmetic,
bit arithmetic
|