Expressions in Java || Lesson 13 || Java Programming || Learning Monkey ||

Publicado em: 20 Abril 2023
no canal de: Learning Monkey
1,401
23

Expressions in Java
In this class, We discuss Expressions in Java.
The reader should have prior knowledge of operators. Click Here.
We take an example and understand expressions.
Example:
int a=9, b=5, c=2, d;
d= a- b- c;
d = a + b * c;
d = a/ b/ c;
The first expression is d = 9-5-2.
Evaluate 9 – 5 -2.
We can evaluate the expression in two ways.
5 – 2 evaluated first, and we get 3.
Then evaluate 9 – 3 will output 6.
The second way, 9-5, is evaluated first. We get 4.
4 – 2 evaluated; next, we get 2.
Different evaluations provide different outputs.
Similarly, the remaining expressions give different outputs.
To evaluate the expressions, we need some set of rules or conditions.
The rules for evaluating expressions are provided by using precedence and associativity.
We will discuss precedence and associativity in our next class.

Link for playlists:
   / @learningmonkey  


Link for our website: https://learningmonkey.in

Follow us on Facebook @   / learningmonkey  

Follow us on Instagram @   / learningmonkey1  

Follow us on Twitter @   / _learningmonkey  

Mail us @ learningmonkey01@gmail.com


Nesta página do site você pode assistir ao vídeo on-line Expressions in Java || Lesson 13 || Java Programming || Learning Monkey || duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Learning Monkey 20 Abril 2023, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 1,401 vezes e gostou 23 espectadores. Boa visualização!