博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java
阅读量:5251 次
发布时间:2019-06-14

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

***********

themel:java notice
time:2016.7.6
authrer;andy
*****************
---base type of java date: int /double/char/short /long /boolean/byte/ float

---q&a;

什么是变量?
如何声明变量、给变量赋值和使用变量?
Java中常用的数据类型有哪些?
算术运算符中“/”和“%”的区别是什么?
发生自动类型转换的条件是什么?
如何进行强制类型转换?
什么数据类型可以描述真和假?
多重if条件结构和switch结构的区别和适用场合是什么?

什么事构造方法

***********
theme:object
time:2016.7.7
authrer;andy
*****************

定义一个类的步骤:

1、定义类名
2、编写类的属性
3、编写类的方法

构造方法:1、方法名与类名相同

2、没有返回类型

封装:

继承:(the father class)在 java 中,类可以继承自另一个类。衍生的类(子类)继承父类的方法和数据成员

多态:
____________________________________
jdbc connection:
1、加载驱动包
2、导入java.sql包
3、加载驱动
4、创建链接
5、获取执行SQL语句的对象
6、检索数据库
--查询(不修改数据库的数据) executeQuery
--增、删、改(修改数据库的数据) executeUpdate
7、查询时数据库的处理--处理结果集 ResultSet
8、各种资源关闭

*********************************************************************

____________________________________________

 

 

学生管理系统: step:1 创建 pakeage com.etc. dao

学生管理接口:

public interface studentManage(){

publice boolean checkuser(String username, String userpw);

publice boolean Addstudent(Student student);
//
(String username, int age,String userpw.............);

 

 

publice boolean Findestudent(String username, int age,String userpw);

}

2. pakeage com.etc.entity 数据过大封装成Student类。
pulice class Studnet{}
/ /ctrl+shift+o 导包auto

3. interface 实现:
com.etc.dao.impl 创建

 

4 。链接数据库;(+jsp : 形成系统)

 

 

________________________________________________________
*********************************************************
数据库链接:
1、加载驱动包
2、导入java.sql包
3、加载驱动
--.Class.forName("com.my.jdbc.Driver");
数据库链接是通过DriverManage来管理的。
--connection conn =driverManage.getconnection(url,user,passwd);
4、创建链接
5、获取执行SQL语句的对象
6、检索数据库
--查询(不修改数据库的数据) executeQuery
--增、删、改(修改数据库的数据) executeUpdate
7、查询时数据库的处理--处理结果集 ResultSet
8、各种资源关闭

 

*********************
theme:web project /tomcat+..
time:2016.7.7 afternoon
auther;andy
**********************
note taking:
error:404: cant find webpage.
405:不允许此方法
400:

_____________________________

Web - INF:web information
WebRoot: js/ html/ resource/
________________________________

form 表单/

 

 

 

 

 

 

 

*************************

2016.7.8

*********************

/*
2017.7.8、/morning
review
*/

Jave: privimtive type of data / float /byte/char/integer/double/long/short/char/

循环/数组/对象/封装/继承/包
Circle writing.
Jdbc connection

Set+interface

A project for fundtion is not likely to write code. Design will spend more time .
For example: you design a studentManageSystem
At first you should know the logic of the system .what kind of operation it will execute.
What kind job it need to finish.
Step1: create abstruct methond declear interface write those StudentCheck()
FondStudnt()................

Asume all the those things is finished . Then you can run the program in the loacalhost
The you can have a try in the web.
By using js/html/css/ you can write a dynamic page.
You can find a model. Make some change to be what you want.
Konwledge:
js/html/css/
**********************************

 

转载于:https://www.cnblogs.com/a-n-dy/p/5767162.html

你可能感兴趣的文章
利用Fiddler拦截接口请求并篡改数据
查看>>
python习题:unittest参数化-数据从文件或excel中读取
查看>>
在工程中要加入新的错误弹出方法
查看>>
PS 滤镜— — sparkle 效果
查看>>
网站产品设计
查看>>
代理ARP
查看>>
go 学习笔记(4) ---项目结构
查看>>
java中静态代码块的用法 static用法详解
查看>>
Java线程面试题
查看>>
Paper Reading: Relation Networks for Object Detection
查看>>
day22 01 初识面向对象----简单的人狗大战小游戏
查看>>
mybatis源代码分析:深入了解mybatis延迟加载机制
查看>>
Flask三剑客
查看>>
Hibernate-缓存
查看>>
【BZOJ4516】生成魔咒(后缀自动机)
查看>>
提高PHP性能的10条建议
查看>>
svn“Previous operation has not finished; run 'cleanup' if it was interrupted“报错的解决方法...
查看>>
熟用TableView
查看>>
Java大数——a^b + b^a
查看>>
poj 3164 最小树形图(朱刘算法)
查看>>