/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/java/java-503-23-007/main.java
17 строк
595 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
public class StackExample { public static void main(String[] args) { int x = 10; // примитив в стеке main String s = "text"; // ссылка в стеке, объект в куче compute(5, 3); // новый фрейм в стеке } static int compute(int a, int b) { int result = a * b; // переменные в стеке compute return add(result, 10); } static int add(int x, int y) { return x + y; // фрейм add поверх фрейма compute } }