h1 - h6 并告诉搜索引擎 这里是标题p 用于正文段落多img 图片 替换元素
自闭合标签自闭合标签:hr/ br/ area/ img/ input/替换元素: img input textarea select
objectimg初始化成 display:block;无序编号 ul list...
分类:
Web程序 时间:
2014-05-19 10:53:11
阅读次数:
332
Criteria的完整用法QBE (Query By Example)Criteria cri =
session.createCriteria(Student.class);cri.add(Example.create(s));
//s是一个Student对象list cri.list();实质:...
分类:
系统相关 时间:
2014-05-19 10:39:34
阅读次数:
393
它的好处在于,可以方便的测试线上的代码。有映射功能自动响应--->勾选------------->Add------------> 修改地址
分类:
其他好文 时间:
2014-05-19 10:29:07
阅读次数:
231
1. vs 中新建win32 dll 项目 testdll添加实现文件
test.cpp#include "stdafx.h" #include using namespace std;int Add(int plus1, int
plus2){ int add_result = plus1 ...
分类:
编程语言 时间:
2014-05-19 10:25:52
阅读次数:
309
Question 1:Given an array of integers, find two
numbers such that they add up to a specific target number.The function twoSum
should return indices of...
分类:
其他好文 时间:
2014-05-19 09:35:41
阅读次数:
321
Given a linked list, remove the nth node from
the end of list and return its head.For example,Given linked list:
1->2->3->4->5, and n = 2.After removi...
分类:
其他好文 时间:
2014-05-19 09:16:49
阅读次数:
247
C#字符串拼接的方法常用的有:StringBuilder、+、string.Format、List。使用情况不同,效率不同。1.+的方式string
sql = "update tableName set int1=" + int1.ToString() + ",int2=" + int2.ToSt...
分类:
其他好文 时间:
2014-05-19 08:57:09
阅读次数:
242
1)
点对点通讯:点对点方式是最为传统和常见的通讯方式,它支持一对一、一对多、多对多、多对一等多种配置方式,支持树状、网状等多种拓扑结构。2)
多点广播:MQ适用于不同类型的应用。其中重要的,也是正在发展中的是"多点广播"应用,即能够将消息发送到多个目标站点(Destination
List)。可以...
分类:
其他好文 时间:
2014-05-19 08:12:03
阅读次数:
274
1,接口可以多继承。2,接口可以添加公共的属性。3,impl
方法被隐藏,让调用者清晰的看到方法和参数。4,一个接口可以,可以多个实现。exp:List list1 = new ArrayList(); List
list2 = new LinkList(); (ArrayList 与 Link.....
分类:
编程语言 时间:
2014-05-19 08:10:13
阅读次数:
462