ATAman Talrejainjavawithaman.hashnode.dev·Oct 21, 2023 · 2 min readStringsStrings in Java are treated as an object rather than as an array of characters. Difference between String and String literal The string is a whole object in Java with a bunch of properties and methods whereas a String literal is just a sequence of c...00
ATAman Talrejainjavawithaman.hashnode.dev·Sep 30, 2023 · 1 min readJRE And Data Areaswhat is JRE? JRE stands for Java runtime environment which comes with JDK and IDEs. It is used to run Java code on RAM. For different aspects of code, it has different data areas to store them. Following are the data areas and the data they store: S...00
ATAman Talrejainjavawithaman.hashnode.dev·Sep 27, 2023 · 2 min readClasses and objectsJava is an object-oriented programming language which means it is based on classes and objects. Classes are just blueprints or templates for objects. An object in Java is just as in real life it has a has part and a does part. Has Part Of Object In h...00
ATAman Talrejainjavawithaman.hashnode.dev·Sep 26, 2023 · 1 min readIntroduction To JavaJava is a statically typed language. It is an OOP language. Java is very secure so much so that many big enterprises like Google and Amazon use it. Currently, Java 21 is available for developers. Java is a platform-independent language which mean...00