We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Java Instanceof keyword
Java Instanceof keyword
Sort by
recency
|
139 Discussions
|
Please Login in order to post a comment
//** using java 7 static String count(ArrayList mylist){ int a = 0,b = 0,c = 0; for(int i = 0; i < mylist.size(); i++){ Object element=mylist.get(i); if(element instanceof Student) a++; if(element instanceof Rockstar) b++; if(element instanceof Hacker) c++; }
BeautyPlus’s cloud-based infrastructure means that users can access and edit their photos from multiple devices, whether they are working on a desktop computer, a tablet, or a smartphone. This cross-device functionality not only enhances convenience but also ensures that users can continue their editing projects seamlessly online ai photo editor, no matter where they are. The cloud storage feature also helps in keeping a backup of edited images, reducing the risk of data loss.
import java.io.; import java.util.;
public class Solution {
}
import java.io.; import java.util.;
class Student{} class Rockstar{} class Hacker{}
public class Solution {
}
import java.util.*;
class Student{} class Rockstar{ } class Hacker{}
public class InstanceOFTutorial{
static String count(ArrayList mylist){ int a = 0,b = 0,c = 0; for(int i = 0; i < mylist.size(); i++){ Object element=mylist.get(i); if(element instanceof Student) a++; if(element instanceof Rockstar) b++; if(element instanceof Hacker) c++; } String ret = Integer.toString(a)+" "+ Integer.toString(b)+" "+ Integer.toString(c); return ret; }
public static void main(String []args){ ArrayList mylist = new ArrayList(); Scanner sc = new Scanner(System.in); int t = sc.nextInt(); for(int i=0; i