Core java
12 SeptemberDifference between Iterator and ListIterator in java
In this post, we will see difference between Iterator and ListIterator in java. They are both used for traversal but it is good to point out differences between them. Iterator vs ListIterator: Parameter Iterator ListIterator Traversal Iterator can be used to traverse List,set, Queue ListIterator can be used to traverse only List. Traversal direction Iterator can […]
12 SeptemberTreeSet in java
In this post, we will see TreeSet in java. Java TreeSet have following properties: It can contain only unique element. It stores objects in ascending order by default, It implements NavigableSet interface which extends SortedSet. When you put objects in TreeSet, it must implement Comparable interface. Lets understand it more with the help of example. […]
09 SeptemberBruno Casino : inscription facile et calcul de bonus détaillé
Les casinos en ligne varient considérablement en qualité – ce guide coupe à travers le bruit et ne couvre que ce qui compte vraiment pour une expérience fluide. Nous nous concentrons sur les étapes pratiques pour créer un compte, les calculs de bonus et les aspects financiers. Ce dont vous avez besoin d’abord Une pièce […]
02 SeptemberJava Enum tutorial with examples
Java Enum is special data type which represents list of constants values. It is a special type of java class. It can contain constant, methods and constructors etc. Lets see example to understand better Let’s say we get three types of issues which require different SLA to get it fixed. Usually they are level 1,level […]
23 AugustJava Interview Programs
I have been posting java interview programs on various topics such as Binary tree, LinkedList , String, Number, ArrayList, HashMap etc. So I am consolidating list of java interview programs to create an index post. I will keep adding links to this post whenever I add any new program. These are frequently asked java programs […]
21 AugustBonus, sicurezza e metodi di pagamento: guida pratica completa
Questa guida pratica a Plexbet casinò online si concentra su ciò che conta davvero: bonus, accesso mobile e pagamenti puntuali. Seguendo questi passaggi potrai ottimizzare l’esperienza di gioco senza sorprese. Before You Start Verifica che la tua connessione internet sia stabile per evitare interruzioni durante il gioco. Assicurati di avere un documento d’identità valido per […]
19 AugustJava Timer example
Timer is an utility class which can be used to schedule tasks on specific time or repeatedly. Lets say, you are developing an banking application and there is need to process the data at 7 PM evening daily. You can easily schedule task using Timer class. For creating a task, you need to extends TimerTask […]
18 AugustStake bonus: Praktický průvodce registrací a platbami
Toto je praktický návod krok za krokem: registrace, ověření, bonusy a platby – žádné zbytečnosti. Než začnete Připravte si platný e‑mail a telefonní číslo. Mějte po ruce doklad totožnosti (občanský průkaz nebo pas) pro ověření. Rozhodněte se o způsobu platby – karta, e‑peněženka nebo kryptoměna. Zkontrolujte, zda je online hazard ve vaší zemi legální a […]
08 AugustCountDownLatch in java
As per java docs, CountDownLatch is synchronisation aid that allows one or more threads to wait until set of operations being performed in other threads completes.