上一页 1 2 3 4 5 6 ··· 19 下一页
摘要: 客户机:服务器: 阅读全文
posted @ 2014-10-23 09:10 soul390 阅读(163) 评论(0) 推荐(0) 编辑
摘要: TCP连接的三次握手:TCP断开连接: 阅读全文
posted @ 2014-10-23 08:49 soul390 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 1 package com.example.testhandler; 2 3 import android.os.Bundle; 4 import android.os.Handler; 5 import android.os.Message; 6 import android.app.Acti... 阅读全文
posted @ 2014-10-22 19:25 soul390 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 1 drop table orders; 2 create table orders ( 3 o_id int auto_increment primary key, 4 orderdate date, 5 orderprice int, 6 customer varchar(100) 7 ); ... 阅读全文
posted @ 2014-10-22 11:12 soul390 阅读(470) 评论(0) 推荐(0) 编辑
摘要: A类IP地址一个A类IP地址由1字节的网络地址和3字节主机地址组成,网络地址的最高位必须是"0", 地址范围从1.0.0.0 到126.0.0.0。可用的A类网络有126个,每个网络能容纳1亿多个主机B类IP地址 一个B类IP地址由2个字节的网络地址和2个字节的主机地址组成,网络地址的最高位必须是... 阅读全文
posted @ 2014-10-22 09:35 soul390 阅读(2402) 评论(0) 推荐(0) 编辑
摘要: Code NameAge Class Score97001张三 22 数学 8097002赵四 21 计算机 5997003张飞 20 计算机 6097004李五 22 数学 551、请写出SQL,找出所有姓张的学生,并按年龄从小到大排列; select*fromTableXwherenamelik... 阅读全文
posted @ 2014-10-21 22:31 soul390 阅读(412) 评论(0) 推荐(0) 编辑
摘要: 1 create table chengji ( 2 name varchar(10), 3 kecheng varchar(10), 4 fenshu int 5 ); 6 insert into chengji values('张三', '语文', 81); 7 insert into che... 阅读全文
posted @ 2014-10-21 22:17 soul390 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 1 public class Test { 2 /** 3 * 对于多态,可以总结它为: 4 5 一、使用父类类型的引用指向子类的对象; 6 7 二、该引用只能调用父类中定义的方法和变量; 8 9 三、如果子类... 阅读全文
posted @ 2014-10-21 21:45 soul390 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 1 public class TopicOne { 2 3 public static void main(String[] args) { 4 B b = new B(); 5 } 6 } 7 8 class A{ 9 C c = new C(... 阅读全文
posted @ 2014-10-15 21:11 soul390 阅读(110) 评论(0) 推荐(0) 编辑
摘要: public class Test { public static void main(String[] args) { /* * 将一个对象加入一个集合中,集合中的对象与原对象指向的是同一个引用 */ HashMap map = n... 阅读全文
posted @ 2014-10-15 10:57 soul390 阅读(116) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 19 下一页