Skip to main content

Posts

Showing posts from April, 2018

Java 8 Features with Examples

Java 8  was released in 18th March 2014, we will discuss here Java 8 features with examples. Java 8 Features 1.     forEach() method in Iterable interface Whenever we need to traverse through a Collection, we need to create an  Iterator  whose whole purpose is to iterate over and then we have business logic in a loop for each of the elements in the Collection. We might get  ConcurrentModificationException  if iterator is not used properly. Java 8 has introduced  forEach  method in  java.lang.Iterable  interface so that while writing code we focus on business logic only.  forEach  method takes  java.util.function.Consumer  object as argument, so it helps in having our business logic at a separate location that we can reuse. Let’s see forEach usage with simple example. package com.journaldev.java8.foreach;   import java.util.ArrayList; import java.util.Iterator; import java.util.L...

Cryptocurrency क्या है (What is Cryptocurrency)

तो आखिर  क्रिप्टोकरेंसी क्या है (What isCryptocurrency)? आज जिसे देखो वो Cryptocurrencies के पीछे भाग रहा है. बहुत ही कम समय में Cryptocurrency ने financial market में अपना सत्ता मजबूत जाहिर कर दिया है. चूँकि Crypto currency को digital money भी कहा जा सकता है क्यूंकि ये केवल Online ही उपलब्ध है और इसे हम physically लेन देन नहीं कर सकते. दुसरे currencies जैसे की भारत में Rupees, USA में Dollar, Europe में Euro इत्यादि को सरकारें पुरे देश में लागु करते हैं और इस्तमाल में लाये जाते हैं ठीक वैसे ही इन currency को भी पुरे दुनिया में इस्तमाल में लाया जाता है. लेकिन यहाँ समझने वाली यह बात है की इन Cryptocurrencies के ऊपर Government का कोई भी हाथ नहीं होता है क्यूंकि ये Decentrallized Currency होती हैं इसलिए इनके ऊपर कोई भी agency या सरकार या कोई board का अधिकार नहीं होता , जिसके चलते इसके मूल्य को regulate नहीं किया जा सकता. Cryptocurrency   को digital currency भी कहा जाता है. यह एक तरह का Digital Asset होता है जिसका इस्तमाल चीज़ों की खरीदारी या Services के लिए कि...