<!DOCTYPE html><html><head><meta charset="gb2312" /><title>无标题文档</title><style>.triangle-left { width:0; height:0; border-right:20px solid yellow; bor
分类:
Web程序 时间:
2016-02-27 10:53:19
阅读次数:
203
(一)、制作YUM本地源:YUM简介:YUM是YellowdogUpdaterModified的简称,yum是软件的仓库,它可以是http或ftp站点,也可以是本地软件池,但必须包含rpm的header,header包括了rpm包的各种信息,包括描述,功能,提供的文件,依赖性等.正是收集了这些header并加以分析,才能自动..
分类:
系统相关 时间:
2016-02-22 19:25:34
阅读次数:
214
在写代码时,我们可以用类来使代码更加方便简洁,下面是一个简单的查询分页练习 源代码: <html> <head> <style type="text/css"> .p1 { color:yellow; background-color:#00F; font-size:14px; } </style>
分类:
Web程序 时间:
2016-02-21 18:26:05
阅读次数:
231
1 <html> 2 <head> 3 <style type="text/css"> 4 .p1 5 { 6 color:yellow; 7 background-color:#00F; 8 font-size:14px; 9 } 10 </style> 11 </head> 12 <body>
分类:
其他好文 时间:
2016-02-21 17:08:08
阅读次数:
225
用法一:常量 在JDK1.5 之前,我们定义常量都是: public static fianl.... 。现在好了,有了枚举,可以把相关的常量分组到一个枚举类型里,而且枚举提供了比常量更多的方法。 public enum Color { RED, GREEN, BLANK, YELLOW } 用法二
分类:
编程语言 时间:
2016-02-20 18:57:40
阅读次数:
311
public struct Color1 { public const int Blue = 1; public const int Green = 2; public static int Yellow = 3; } public enum Color2:int { Blue=1, Green=2
分类:
编程语言 时间:
2016-02-19 19:05:35
阅读次数:
219
一、yum 简介 yum,是Yellow dog Updater, Modified 的简称,是杜克大学为了提高RPM 软件包安装性而开发的一种软件包管理器。起初是由yellow dog 这一发行版的开发者Terra Soft 研发,用python 写成,那时还叫做yup(yellow dog up
分类:
其他好文 时间:
2016-02-03 12:48:33
阅读次数:
487
Suppose a bank has K windows open for service. There is a yellow line in front of the windows which devides the waiting area into two parts. All the c
分类:
其他好文 时间:
2016-02-02 21:37:34
阅读次数:
243
Suppose a bank has N windows open for service. There is a yellow line in front of the windows which devides the waiting area into two parts. The rules
分类:
其他好文 时间:
2016-01-30 22:18:42
阅读次数:
215
用法一:常量在JDK1.5 之前,我们定义常量都是: public static fianl.... 。现在好了,有了枚举,可以把相关的常量分组到一个枚举类型里,而且枚举提供了比常量更多的方法。public enum Color { RED, GREEN, BLANK, YELLOW } 用...
分类:
编程语言 时间:
2016-01-23 01:22:15
阅读次数:
175