Omkar Terbhaiomkarterbhai.hashnode.dev·Dec 14, 2024The Object class in JavaYou might have seen many articles describing the Object class in Java, but why does it exist? What use case does it satisfy? Let’s explore that in this article by going step by step and understanding what if we write code being unaware of the Object ...Java
Canercanerozdemir.hashnode.dev·Dec 11, 2024Unity ve C# Özelinde Bellek Yönetimi: Garbage CollectionDaha önce yazdığım bellek yönetimi ile ilgili yazımda, heap belleğinden bahsetmiştim. O yazımda, garbage collection’ı da çok kısa bir şekilde özetlemiş ve başka bir yazımda garbage collection ile alakalı daha çok bilgi paylaşacağımı söylemiştim. Bu y...299 readsC#
Dhruvan Naidudhruvan.hashnode.dev·Dec 9, 2024Understanding JavaScript Garbage Collection Under the HoodJavaScript, being a high-level programming language, simplifies memory management for developers by automatically allocating and freeing memory through a process called garbage collection (GC). While it seems effortless on the surface, the mechanisms...understanding garbage collection
Omkar Terbhaiomkarterbhai.hashnode.dev·Dec 7, 2024Weak and Soft References in JavaConsider a scenario where you have to build a finance based application that allows users to buy or sell assets in foreign currencies, in this case you will have to constantly fetch foreign currency exchange rates at every event the user triggers. An...42 readsJava
Nabil ulil Albabconstngoding.hashnode.dev·Nov 30, 2024SELinux-Permissive-Enforcing-Android-TermuxMemahami Peran dan Pembatasan Akses Direktori /proc di Android Di sistem operasi Android, direktori /proc memiliki fungsi yang sangat mirip dengan distribusi Linux lainnya. Direktori ini menyimpan informasi penting mengenai proses yang sedang berjala...10 likesSystem Design
Laasya Kandukurilaasya.hashnode.dev·Nov 15, 2024Garbage Collection: How It Works and Why It MattersGarbage collection is one of the really important processes of programming languages as it collects vacant memory quite efficiently with the help of automatic memory reclamation. If not for this, developers would have to manually allocate as well as ...Java
Siddhartha Soxyprogrammer.com·Oct 26, 2024Exploring Memory Management: A .NET Developer's Insights into GolangIntroduction Over a decade ago, as I explored the intricacies of .NET memory allocation, it struck me as intuitive and elegant. The CLR efficiently manages the Managed Heap as a contiguous slice of memory, optimizing garbage collection—a brilliant co...225 readsBackendescape analysis
Darshit Anjariadarshitanjaria.hashnode.dev·Oct 25, 2024Mastering Memory Management in JavaScript: A Deep Dive into Garbage CollectionIntroduction In any programming language, managing memory efficiently is crucial to building high-performance applications. JavaScript, despite being a high-level language, handles memory management for you through a process called Garbage Collection...39 readsJavaScript
Jival Jensonwilt.hashnode.dev·Oct 23, 2024WILT - Garbage Collection in the JVM: A Modern Deep DiveWhen writing code in high-level languages like Java, one of the biggest advantages we enjoy is automatic memory management. Developers don’t have to worry about manually allocating or freeing memory, thanks to a behind-the-scenes hero called Garbage ...Java
Sarthak Sharmaamni.hashnode.dev·Oct 20, 2024JAVA: ConstructorsPrologue Think of it as assembling furniture. You follow instructions to put all the parts together so it works. Similarly, when you create an object in Java, a constructor helps set it up correctly from the start. Without it, the object would be inc...1 likeJavaJava