Core java
27 DecemberJava ThreadPoolExecutor
Java 5 has introduced new concurrent API called Executor frameworks to make programmer life easy. It simplifies design and development of multi-thread applications. It consists of mainly Executor, ExecutorService interface and ThreadPoolExecutor class which implements both interfaces i.e. Executor and ExecutorService. ThreadPoolExecutor class provide the implementation of thread pool. We will understand more about it […]
23 DecemberJava Semaphore example
In this tutorial, we are going to see about Semaphore in java. Semaphore is a class in java.util.concurrent package introduced in JDK 5. Semaphore basically maintains a set of permits, so there are two methods which are mainly used for semaphore. acquire release acquire() method is used to get a permit and if no. of […]
22 DecemberImmutable class interview questions
In this post, I am going to share java interview questions which are generally asked on immutable class. Immutable class is important topic as it deals with creation of thread safe class. Here I am providing some important immutable class interview questions with answers. 1. What is immutable class? Answer : Immutable objects are those […]
21 DecemberHow to create immutable class in java
In this tutorial, we are going to see how to create immutable class in java. Immutable class is class whose state can not be changed once created. Example: String is best example for immutable class. Once you create a String, you can not change it. Immutable class is very simple to understand, it has only […]
17 DecemberGuía práctica de Jugabet Casino – Registro, bonos y consejos
Whether you are a first-time visitor or returning to Juga bet, this guide covers the essential features you need to know. Prerequisites Edad mínima de 18 años (o la legal en tu jurisdicción). Documento de identidad válido (DNI, pasaporte o carné de conducir) para verificación KYC. Dirección de correo electrónico activa y número de teléfono […]
13 DecemberRetrofit Android Tutorial
In this tutorial, we are going to see Retrofit Android tutorial to get data from server. In previous post, we have seen android JSON parsing tutorial which was very simple. If you are not aware about Retrofit, it is android http library used to handle HTTP request.You can treat it as a replacement of AsyncTask in previous […]
12 DecemberAndroid JSON parsing tutorial using Volley
In this tutorial, we are going to see Android JSON parsing tutorial using Volley. In previous post, we have seen android JSON parsing tutorial which was very simple. In this tutorial, we are going to use external library Volley for sending HTTP request. You can treat it as a replacement of AsyncTask in previous tutorial. […]
12 DecemberBdmbet prijava: popoln vodnik za varno igranje
Spletne igralnice se močno razlikujejo po kakovosti – ta vodnik preseka hrup in pokriva le tisto, kar je dejansko pomembno za gladko izkušnjo. Quick Checklist Preverite licenco in varnostne ukrepe. Raziščite bonuse in pogoje. Izberite način plačila, ki vam ustreza. Preverite čase izplačil. Preberite pravila o stavah. Creating Your Account Registracija je hitra in preprosta. […]
10 DecemberAndroid Restful web services tutorial
In this tutorial, we are going to integrate android with restful web services which return json as response. So we are going to get json from restful web services and then render json response to android custom listview. Example : I have already implemented restful webservices json example. I am going to use same example […]