Computer Science, asked by subhro20, 8 months ago

How to write variable description in java with more than one fuction

Answers

Answered by 12345678909244
1

Answer:

You can declare multiple variables, and initialize multiple variables, but not both at the same time: String one,two,three; one = two = three = ""; However, this kind of thing (especially the multiple assignments) would be frowned upon by most Java developers, who would consider it the opposite of "visually simple".

Similar questions