Java Coding Streamlining

Lingling Yang
1 min readMay 10, 2020

--

  1. Ternary expression

Normal

int val1 = 8, val2 = 10;
int val;
if(val1 > val2){
val = val1;
}else{
val = val2;
}

Streamlining

int val1 = 8, val2 = 10;
int val = val1 > val2 ? val1 : val2;

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

No responses yet

Write a response