Prajjwal Pratap Singhprajjwaltechblog.hashnode.dev·Dec 6, 2023Exploring the Core of Java: A Comprehensive Guide ( PART - 2)Java OOPs Concept Object-Oriented Programming is a paradigm that provides many concepts, such as class object Inheritance polymorphism Encapsulation Abstraction Class A class is a user-defined blueprint or prototype from which objects are cre...DiscussCore JavaOOPS
mallangeemallangdev.hashnode.dev·Oct 29, 2023what is static members in class?static members 용도 static 변수들은 클래스의 instance가 아니라 클래스에 속하게 된다. 따라서 인스턴스 생성과 관련이 없고, 클래스 이름으로 접근해야 한다. static 멤버들은 클래스의 모든 인스턴스 사이에서 공유된다. 코드 예시 class Person { firstName: string; lastName: string; age: number; constructor(firstName: strin...Discussclass
Ronil Rodriguesronilrodrigues.hashnode.dev·Oct 8, 2023Hierarchy of Interface, Abstract Class, and their Subordinate Class ObjectsInterfaces and abstract classes are fundamental concepts in object-oriented programming (OOP) that enable the creation of flexible, extensible, and modular code. Understanding the hierarchy of these constructs is crucial for designing robust software...Discussinterface
Nilesh Ggetsmartwebsite.hashnode.dev·Jul 1, 2023The Hidden Secret of JavaScript Classes - Ditching the `class` Keyword!JavaScript classes have been widely used since they were introduced in ES6. They provide a cleaner and more concise way to generate object constructors. However, did you know that you can create and use JavaScript classes without even using the class...Discuss·29 readsJavaScript
Levai Ágbàràlevai.hashnode.dev·Jun 19, 2023Understanding Classes in JavaScriptIn JavaScript, classes are a way to define a template from which you can create objects that have similar property values as that class; and also define methods that can be applied to those objects. Its main purpose is to promote code reusability. In...Discuss·23 likes·99 readsJavaScript
Sanjay Thotaeragon.hashnode.dev·May 24, 2023Object Oriented ProgrammingThis article is about understanding Object Oriented Programming concepts in a very simplified version. Before going through all the technical definitions and syntaxes. let's try to understand through it our daily life situations. At the age of 25 - 3...Discuss·2 likes·56 readsObject Oriented Programming
Shivam Maggublog.shivammaggu.com·Feb 26, 2023Understanding SwiftUI - Why are Views in SwiftUI Struct and not Class?Why SwiftUI prefers Struct over Class? SwiftUI Views are structs instead of classes. This avoids having multiple inherited properties, keeps them lightweight and improves performance. SwiftUI Views are passed by value. This avoids retain cycles and...Discuss·368 readsUnderstanding SwiftUISwift
Rohan Kotkarrohan4650.hashnode.dev·Feb 12, 2023Object Oriented Programming in C++Programming that employs objects is known as object-oriented programming. The goal of object-oriented programming is to translate real-world concepts like inheritance, hiding, polymorphism, etc. into code. The basic goal of OOP is to connect the data...DiscussC++
Ajayajay020.hashnode.dev·Jan 27, 2023How to use Generic Class in TypeScript?TypeScript supports generic classes and functions just like other programming languages Java and c#. We use generics for writing reusable and flexible code. Generic classes allow us to create classes that can work with any type of data, and that make...Discuss·40 readsTypeScript
Bojan Jagetichashnode.bojanjagetic.com·Nov 8, 2022Javascript Class fundamentalsIntroduction Classes are template used for creating objects, encapsulating data with code to work on that data. Class in Javascript is built on prototype but also it has some syntax that are not shared with ES5 class-like semantic. In the modern Java...Discuss·5 likes·98 readsJavaScript