Подскажите пож, в методе addPrice ,нулю равен Apple.applesPrice или applesPrice ?? И к аргументам объектов apple и apple2 который из них обращается ?
package com.javarush.task.task04.task0402;

/*
Цена яблок
*/

public class Solution {
    public static void main(String[] args) {
        Apple apple = new Apple();
        apple.addPrice(50);
        Apple apple2 = new Apple();
        apple2.addPrice(100);
        System.out.println("Стоимость яблок " + Apple.applesPrice);
    }

    public static class Apple {
        public static int applesPrice = 0;

        public static void addPrice(int applesPrice) {

 Apple.applesPrice = applesPrice + Apple.applesPrice;


        }
    }
}