Telegram Group & Telegram Channel
Java: задача


public class Mystery {
public static void main(String[] args) {
System.out.println(method(true) + method(false));
}

static String method(boolean flag) {
return flag ? "Yes" : "No";
}

static String method(String val) {
return val.toUpperCase();
}
}


Что выведет программа, пишите в комментариях?

A) YesNo
B) YESNO
C) Ошибка компиляции
D) null

Правильный ответ: A

➡️ Вызов
method(true) и method(false) однозначно указывает на метод method(boolean), оба возвращают строки.
Результат:
"YesNo". Метод method(String) не используется.

@javatg



tg-me.com/javatg/1799
Create:
Last Update:

Java: задача


public class Mystery {
public static void main(String[] args) {
System.out.println(method(true) + method(false));
}

static String method(boolean flag) {
return flag ? "Yes" : "No";
}

static String method(String val) {
return val.toUpperCase();
}
}


Что выведет программа, пишите в комментариях?

A) YesNo
B) YESNO
C) Ошибка компиляции
D) null

Правильный ответ: A

➡️ Вызов
method(true) и method(false) однозначно указывает на метод method(boolean), оба возвращают строки.
Результат:
"YesNo". Метод method(String) не используется.

@javatg

BY Java


Warning: Undefined variable $i in /var/www/tg-me/post.php on line 283

Share with your friend now:
tg-me.com/javatg/1799

View MORE
Open in Telegram


Java Telegram | DID YOU KNOW?

Date: |

The S&P 500 slumped 1.8% on Monday and Tuesday, thanks to China Evergrande, the Chinese property company that looks like it is ready to default on its more-than $300 billion in debt. Cries of the next Lehman Brothers—or maybe the next Silverado?—echoed through the canyons of Wall Street as investors prepared for the worst.

How to Use Bitcoin?

n the U.S. people generally use Bitcoin as an alternative investment, helping diversify a portfolio apart from stocks and bonds. You can also use Bitcoin to make purchases, but the number of vendors that accept the cryptocurrency is still limited. Big companies that accept Bitcoin include Overstock, AT&T and Twitch. You may also find that some small local retailers or certain websites take Bitcoin, but you’ll have to do some digging. That said, PayPal has announced that it will enable cryptocurrency as a funding source for purchases this year, financing purchases by automatically converting crypto holdings to fiat currency for users. “They have 346 million users and they’re connected to 26 million merchants,” says Spencer Montgomery, founder of Uinta Crypto Consulting. “It’s huge.”

Java from us


Telegram Java
FROM USA