大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
public class MyDate {
专业成都网站建设公司,做排名好的好网站,排在同行前面,为您带来客户和效益!创新互联为您提供成都网站建设,五站合一网站设计制作,服务好的网站设计公司,成都网站制作、成都网站建设负责任的成都网站制作公司!
private int year;
private int month;
private int date;
public MyDate(int year, int month, int date) {
this.year = year;
this.month = month;
this.date = date;
}
public MyDate() {
}
public int getYear() {
return year;
}
public void setYear(int year) {
this.year = year;
}
public int getMonth() {
return month;
}
public void setMonth(int month) {
this.month = month;
}
public int getDate() {
return date;
}
public void setDate(int date) {
this.date = date;
}
@Override
public String toString() {
return new StringBuilder().append(year).append("-").append(month).append("-").append(date).toString();
}
public static void main(String[] args) {
MyDate myDate = new MyDate();
myDate.setYear(2015);
myDate.setMonth(9);
myDate.setDate(16);
System.out.println(myDate);
System.out.println(new MyDate(2015, 9, 16));
}
}
public static void main(String[] args) {
try {
File file = new File("D:\\farrago.txt");
File descFile = new File("D:\\out.txt");
InputStream is = new FileInputStream(file);
OutputStream os = new FileOutputStream(descFile);
byte[] buffer = new byte[1024];
int n;
while ((n = is.read(buffer)) != -1) {
os.write(buffer, 0, n);
}
is.close();
os.flush();
os.close();
} catch (Exception e) {
// TODO: handle exception
}
}
import java.util.*;
class Customer{
String CusNum;
String CusGrade;
public Customer(){}
public Customer(String Num,String Grade)
{
this.CusNum=Num;
this.CusGrade=Grade;
}
}
class CustManager{
public Customer setCus()
{
System.out.print("输入会员编号:");
Scanner scan=new Scanner(System.in);
String Num=scan.nextLine();
System.out.print("输入会员积分:");
String Grade=scan.nextLine();
Customer cus=new Customer(Num,Grade);
return cus;
}
public void showCus(Customer cus)
{
System.out.println("编号 积分");
System.out.println(cus.CusGrade+"
"+cus.CusGrade);
}
}
public class cot
{
public static void main(String []args)
{
CustManager cusM=new CustManager();
cusM.showCus(cusM.setCus());
}
}
java.net.HttpURLConnection
的初始化过程,通过java.net.URL来初始化的。
public
class
NetConnect{
//网络连接类
java.net.HttpURLConnection
conn;
public
NetConnect(String
url,
String
method,
java.net.Proxy){//构造函数
try{
URL
url
=
new
URL(url);
//打开连接
conn
=
(HttpURLConnection
)url.openConnection(proxy);
conn.setRequestMethod(method);
//访问的方法get/post
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setConnectTimeout(12);//设置超时
}catch(Exception
ex){
ex.printStackTrace();
}
}
}
学Java的朋友,起初如果你是对代码感兴趣,那么成为Java代码高手,是不是会让你很兴奋呢?如果你不是由于对代码感兴趣,而走上了Java技术之路,那么你也相当有必要让自己成为一个Java代码高手。
如何成为Java代码高手?这个就是重庆北大青鸟今天想要跟你一起讨论的话题。
如何成为Java代码高手?1.成为Java代码高手的第一条,那么就是勤学苦练。
实践比理论更加能够发现问题,在想自己的Java代码进步的时候,也是同样的道理,作为一个Java程序员要想成为Java代码,那么代码的数量你敲的越多,那么成为Java代码高手的可能性越强,但是记住不是毫不带目的的敲,能够让自己得到提升的敲。
2.成为Java代码高手的第二条,那么就是定律要遵守。
比如在敲Java代码中,可能出错的地方一定会出错。
每个变量都做初始化,引用每个参数都会做有效性检查,在可能出错的每个地方都会做边界条件检查,这样你开发出来的程序一定会稳固很多,就是出错也会很容易修改,遵守好定律,你的Java代码水平会更加出色。
//Teacher.java
public class Teacher {
//4个String类型的私有字段Name、TeacherID、Address、Course
private String Name;
private String TeacherID;
private String Address;
private String Course;
public String getName() {
return Name;
}
public void setName(String name) {
Name = name;
}
public String getTeacherID() {
return TeacherID;
}
public void setTeacherID(String teacherID) {
TeacherID = teacherID;
}
public String getAddress() {
return Address;
}
public void setAddress(String address) {
Address = address;
}
public String getCourse() {
return Course;
}
public void setCourse(String course) {
Course = course;
}
//查询老师授课课程的方法queryCourse
public String queryCourse(String qryString){
if(qryString.equals(TeacherID)){
return Course;
}
return "";
}
}
//Test.java
public class Test {
public static void main(String[] args) {
Teacher t = new Teacher();
//设置该对象中的4个私有字段分别为:TeacherID=”001”、Name=”Peter”、Address=”Beijing”、Course=”OS”
t.setTeacherID("001");
t.setName("Peter");
t.setAddress("Beijing");
t.setCourse("OS");
String qryString = "001";
//显示“Teacher:此处为对象的Name,Course:此处为对象的课程”
System.out.println("Teacher:"+t.getName()+",Course:"+t.queryCourse(qryString));
}
}