Dilip Pateljavamastery.hashnode.dev·Sep 27, 2024Java Access ModifiersAccess modifiers in Java are keywords that set the accessibility or scope of classes, methods, and other members. They are crucial for encapsulation, one of the core principles of object-oriented programming. Java provides four main access modifiers:...46 readsaccess modifiers
Akash Dasakashdas7781.hashnode.dev·Sep 22, 2024Code Guardians: Navigating Access Modifiers and Packages in JavaImagine you have a vast music collection on your device. To keep it organized, you create a main folder labeled "Music" and sub-folders for different categories: one for your favorite songs, another for Bollywood hits, and others by singer. This syst...Java
The Chief - Omarchiefomar.hashnode.dev·Jul 20, 2024Android Mastery: Visibility ModifiersVisibility modifiers can be considered as the machine behind encapsulation. As a quick reminder, encapsulation is the act of wrapping the properties of a class together with the methods that perform actions on those properties. These visibility modif...Android
Esther Breathestherbreath01.hashnode.dev·Oct 2, 2023ACCESS CONTROL AS AN ATTACK VECTOR IN SOLIDITY Access Control Checks on Critical FunctionsINTRODUCTION Before we can discuss this topic, let’s understand what Blockchain and Smart contracts are. Blockchain is a globally shared transactional database. This means that everyone can read entries in the database just by participating in the ne...access control
Hussein Tijanidtechbroindoor.hashnode.dev·Aug 16, 2023Access Control in Swift ExplainedIn the general concept of software development, access control refers to the practice of defining the scope in which entities are available within a codebase. In Swift, these entities range from Classes to Structs, to Properties and Methods. Access c...11 likesSwift
Ishita Ghoshishitaghosh.hashnode.dev·Dec 5, 2022Understanding Access Modifiers In C++Let us try to understand some important keywords in C++, which are public, private, and protected. These things are beneficial while building large applications and help to provide a better understanding of object-oriented programming concepts. One o...5 likes·40 readsC++
Mohindar Amarnadhmohindar99.hashnode.dev·Nov 28, 2022What are Visibility Modifiers in Solidity ?Introduction : The visibility modifiers would determine the level of access of a variable or function in our smart contracts . These are also called as "Access Modifiers" . These modifiers are necessary to protect which smart contract can see the dat...42 readsSolidity
Vijay Tembugadevijaytembugade.hashnode.dev·Nov 23, 2022Private, Public & Protected: Access Modifiers In TypescriptLet’s try to understand the most important keywords in typescript, which are public, private, and protected. These things are really helpful while building large applications. Disclaimer: Having a good understanding of JavaScript and an idea about ...9 likes·139 readsaccess modifiers