前几天同事问我css中单冒号和双冒号是什么意思,我也模糊得很,只有个笼统的概念就是:伪元素和伪类。一直以为,页面布局中很少使用到伪类,结果细细研究发现我们经常使用的hover就是一个最简单的伪类,顿时觉得自己太OUT了,紧跟着这两天都在看这些东西,其实伪类最简单的理解就是用于向某些选择器添加特殊的效...
分类:
其他好文 时间:
2014-05-26 22:25:40
阅读次数:
381
创建存储过程:1 delimiter //2 create procedure
printname (id int,out name char(50) )3 begin4 select user into name from user
where id=id;5 end6 //7 delimiter...
分类:
其他好文 时间:
2014-05-23 06:11:51
阅读次数:
184
class SuperClass{ static{ System.out.println("super
class init!"); } static int superInt = 1; static String superString = "supS...
分类:
编程语言 时间:
2014-05-23 04:35:31
阅读次数:
253
1 @echo off2 :loop3 datamaker4 std5 me6 fc std.out
me.out7 if not errorlevel 1 goto loop8 pause9 goto loop对拍模板。
分类:
其他好文 时间:
2014-05-23 03:43:23
阅读次数:
295
static void Main(string[] args) { /*int i,j;
Method1(10,20,out i ,out j ); Console.WriteLine("{0}and{1}", i, ...
分类:
其他好文 时间:
2014-05-23 03:04:48
阅读次数:
276
public class TraditionalThreadTest {
static class Outputer {
public void output1(String name) {
synchronized (Outputer.class) {
for (int i = 0; i < name.length(); i++) {
System.out.pri...
分类:
其他好文 时间:
2014-05-22 23:53:45
阅读次数:
442
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Threading.Tasks;namespace outAndref{
class Program ...
分类:
其他好文 时间:
2014-05-22 16:04:40
阅读次数:
258
在查看alert日志的时候发现: 1
*********************************************************************** 2 3
Fatal NI connect error 12170. 4 5 VERSION INFORMATI...
分类:
其他好文 时间:
2014-05-21 20:13:32
阅读次数:
298
一、FIFO简介 FIFO是英文First In First Out
的缩写,是一种先进先出的数据缓存器,它与普通存储器的区别是没有外部读写地址线,这样使用起来非常简单,但缺点就是只能顺序写入数据,顺序的读出数据,其数据地址由内部读写指针自动加1完成,不能像普通存储器那样可以由地址线决定读取或写入....
分类:
其他好文 时间:
2014-05-21 18:57:44
阅读次数:
239
Description
A subsequence of a given sequence is the given sequence with some elements (possible none) left out. Given a sequence X = another sequence Z = is a subsequence of X if there exists a ...
分类:
其他好文 时间:
2014-05-21 10:58:39
阅读次数:
237