博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java 学习笔记及资源
阅读量:5221 次
发布时间:2019-06-14

本文共 1339 字,大约阅读时间需要 4 分钟。

Spring框架入门HelloWorld :http://www.importnew.com/13246.html  (iteye 唐 博客,跟我学Sprint)

Spring 框架下载地址:http://repo.spring.io/release/org/springframework/spring/

Class.forName方法,此方法含义是:加载参数指定的类,并且初始化它。

// TODO Auto-generated method stub        //声明connection 对象        Connection con;        //驱动程序名        String driver = "com.mysql.jdbc.Driver";        //URL指向要访问的数据库名        String url  = "jdbc:mysql://localhost:3306/sqltestdb";        String user = "root";        String password = "123456";        try {            //加载驱动程序            Class.forName((driver));            //1 .getConnection()方法连接MYSQL数据库;            con = DriverManager.getConnection(url,user,password);

 

抽象类:抽象类不能实例化对象,类的其它功能仍然存在。抽象类只能被继承,才能被使用。在java中使用abstract 业定义抽象类;

/* 文件名 : Employee.java */public abstract class Employee{   private String name;   private String address;   private int number;   public Employee(String name, String address, int number)   {      System.out.println("Constructing an Employee");      this.name = name;      this.address = address;      this.number = number;   }   public double computePay()   {     System.out.println("Inside Employee computePay");     return 0.0;   }   public void mailCheck()   {      System.out.println("Mailing a check to " + this.name       + " " + this.address);   }}

  

转载于:https://www.cnblogs.com/lrzy/p/8267161.html

你可能感兴趣的文章
【机器学习】分类算法——Logistic回归
查看>>
htm 中 <b>和<strong>的区别
查看>>
中文词向量论文综述(二)
查看>>
[SHOI2008]小约翰的游戏
查看>>
# linux文件系统(inode block superblock)
查看>>
Add Two Numbers
查看>>
操作系统概论四
查看>>
POJ 1150 The Last Non-zero Digit
查看>>
html
查看>>
移动端物理/css/位图像素概念以及rem布局的实现
查看>>
warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]
查看>>
Django 分页器
查看>>
strcpy 一题
查看>>
对于有志于成为架构师的开发者,支付宝架构团队有何建议?
查看>>
C#多播委托详解
查看>>
通用分页jsp页面显示
查看>>
各种图形库介绍
查看>>
第十六章 string类和标准模板库(2. 标准模板库之容器)
查看>>
c语言-单链表(二)
查看>>
Codeforce500C New Year Book Reading
查看>>