Tuesday, 4 February 2014

How to Redirect Visitors From Old Blog to New Blog.

       when I create a new Blog and you are traffic or visitor Problem Then Don't worry I will Solution.A Traffic/ visitor to your old blog to new blogs there are main way.Then visitor come with your Old blog to new blog .Your Mind so many Question Like This .How It is work..There are few steps Go To It.


Process of how to redirect traffic From old blog to new blog:


  • Go to your old blogger dashboard.
  • Click on Template > > HTML.
  • Add this below code just after the <head> Section.
  • <meta http-equiv="refresh" content="0;url=http://Studytomidnight.blogspot.com"/>
  • Change the Red color URL & give your New blog URL.
  • Now Save your Template.


Read More

How To create Blog In Blogger.com With Gmail Account

This is the best way To create Your Own Blog For Free hosting u will tack domain and free time u will write a post.there are many way to earn money from seating home and u make Home made billionaire from your time u will share your post,pics and videos from your blog and u will earn money from many way.


There Are Advantage Of Blogger.com To Create A blog.


  • Earn Money via Send a Post
  • It a Free Then No Hosting Fees Pay
  • To share your artical,post videos and pictures.
  • Unlimited Free space allow to share your videos and Pics.

How To create a Blog


  • Create a Gmail account
  • Then Go To blogger.com 
  • sign In Your Gmail Account.
  • Choose Your Profile.
  • And Go to Create a  New Blog (Left Side).
  • Now Give Your Blog Title.
  • choose Templet and Share Your Post.
Now Create your blog successfull..Enjoy The Blog.

Read More

Copy Constructor In java

Copy Constructor

 Copy constructor is a intialize one object from other object and generally we assignment Operator to invoked copy constructor.

It Intialize value from one object to another.one The object created from class then not possible to  use second time they are use with copy constructor.They inialize value from one object to copy to onother one.


Read More

which are The access Modifier In java?

Access modifier are properties of a class/method/veriable while access modifier are five types


  • Final
  • static
  • Synchronization
  • Abstract
  • Transient

    Final :


    • A java variable can be declared using the keyword final. Then the final variable can be assigned only once.
    • A variable that is declared as final and not initialized is called a blank final variable. A blank final variable forces the constructors to initialise it.
    • Java classes declared as final cannot be extended. Restricting inheritance!
    • Methods declared as final cannot be overridden. In methods private is equal to final, but in variables it is not.
    • Final parameters – values of the parameters cannot be changed after initialization. Do a small java exercise to find out the implications of final parameters in method overriding.
    • Java local classes can only reference local variables and parameters that are declared as final.
    • A visible advantage of declaring a java variable as static final is, the compiled java class results in faster performance.

    Read More

    Monday, 3 February 2014

    what is Polymorphism In Java?

    Polymorphism : 

    It is greek Word poly Means Many Morphism Means Forms Thats call Many Forms.


    "Same Class Name But Diffrent parameter call polymorphism"

    Example :



    There Are Two  Types Of Polymorphism

    1. Compile Time Polymorphism
    2. Run Time Polymorphism

    • Compile Time Polymorphism :                                                                     Define Multiple Method With Same Class Name but Diffrent Passing Parameter.


    •    Run Time Polymorphism :                                                                            If base class and derived class have member functions with same name and arguments. If you create an object of derived class and write code to access that member function then, the member function in derived class is only invoked.
    Read More

    Inheritance program With access Specifier In Java.

       An Access Specifier Is a main part of java program they are not posiblity of make program with out access specifier.


    There are Four access Specifier In Java.


    1. public
    2. private
    3. protected
    4. Default


    There Are six type of  inheritance of Java.

    1. Single Inheritance
    2. Multilevel  Inheritance
    3. Multipath  Inheritance
    4. Multipal  Inheritance
    5. Hybride Inheritance




    Read More