Friday 6 May 2016

Java Quiz: Static Members in Java






by Sarang Nagmote



Category - Programming
More Information & Updates Available at: http://http://vibranttechnologies.co.in




Last Weeks Answer

The correct answer is the code writes "[d, a, b, e]" to the standard output.

This Weeks Quiz

Purpose

  1. To demonstrate some behaviors and tricks of static members in Java
  2. Mind training to understand what happens next.

What Happens When the Following Program is Compiled and Run?

public class MyClass { static int x; StringBuffer sb = new StringBuffer(); static StringBuffer sb2 = new StringBuffer(); public MyClass() { method(); method2(); } public void method(){ x += 3; sb.append(x); } public void method2(){ x += 3; sb2.append(x); } public static void main(String[] args){ MyClass mc = new MyClass(); MyClass mc2 = new MyClass(); MyClass mc3 = new MyClass(); System.out.println(mc2.sb + "-" + mc2.sb2); }}

Let us know your thoughts in the comments, and visit Sars site here!

No comments:

Post a Comment