الرجوع
تسجيل الدخول

What will be the result of trying to access a default access modifier variable from a class in a different package?

package com.example;
class Demo {
    int value = 15;
}