码迷,mamicode.com
首页 >  
搜索关键字:out    ( 35870个结果
伪元素、伪类基础理解
前几天同事问我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
java类初始化
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
元组Tuple
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
synchronized用法的一个实例
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
ref 关键字out关键字
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
TNS-12535: TNS:operation timed out、TNS-00505: Operation timed out
在查看alert日志的时候发现: 1 *********************************************************************** 2 3 Fatal NI connect error 12170. 4 5 VERSION INFORMATI...
分类:其他好文   时间:2014-05-21 20:13:32    阅读次数:298
异步FIFO
一、FIFO简介 FIFO是英文First In First Out 的缩写,是一种先进先出的数据缓存器,它与普通存储器的区别是没有外部读写地址线,这样使用起来非常简单,但缺点就是只能顺序写入数据,顺序的读出数据,其数据地址由内部读写指针自动加1完成,不能像普通存储器那样可以由地址线决定读取或写入....
分类:其他好文   时间:2014-05-21 18:57:44    阅读次数:239
POJ 1458 Common Subsequence.(最长公共子序列)
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!