
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Scope of Default Access Modifier in Java
Default access modifier means we do not explicitly declare an access modifier for a class, field, method, etc.
The scope of the default access modifier lies within the package. When a class or its members associated with default access modifier then.
Example
Variables and methods can be declared without any modifiers, as in the following examples:
String version = "1.5.1"; boolean processOrder() { return true; }
Advertisements