[Java daily question] 20161229, java20161229

Source: Internet
Author: User

[Java daily question] 20161229, java20161229

Package Dec2016; import java. util. arrayList; import java. util. list; public class Ques1229 {public static void main (String [] args) {Student stu01 = new Student ("001"); Student stu02 = new Student (null ); list <Student> students = new ArrayList <Student> (); students. add (stu01); students. add (stu02); System. out. println ("students include 001 student ID:" + students. contains (stu01); System. out. println ("whether students contains null:" + students. contains (stu02) ;}} class Student {private String stuId; public Student (String stuId) {super (); this. stuId = stuId;} public String getStuId () {return stuId;} public void setStuId (String stuId) {this. stuId = stuId;} @ Override public boolean equals (Object obj) {if (obj instanceof Student) {Student stu = (Student) obj; return stuId. equalsIgnoreCase (stu. getStuId (). trim ();} return false ;}}
Today's question:
What is the output result of the main program? (Click "[Java daily question] 20161229" below to view issue resolution 20161228)

Questions originally published on the public account and short book: [Java daily question] 20161229, [Java daily question] 20161229

Note: The weknow team has recently activated and certified the Q & A service. You are welcome to listen. If you have any questions, please come to the Q & A service. Please refer to you !!

 

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.