一. 出现背景:
在JDK1.5之前,我们定义常量是这样的:public static final String RED = “RED”;
在JDK1.5中加入了枚举类型,我们可以把相关的常量分组到一个枚举类中:
public enum Color {
RED, GREEN, BLUE;
}
使用的时候可以这样:Color c = Color.RED
二. 枚举特点:
1...
分类:
编程语言 时间:
2014-10-23 19:22:45
阅读次数:
223
经过一个暑假的集训,打完个人排位,然后组队,组队这个很悬,最后还是按了个人赛排名组了起来。结果我跟小邪,blue组了一支全13级队。然后组队赛就开始了,组队赛一开始打得很烂,然后我们慢慢回暖,虽然追不上前面的3,4,5,6队,但是也是跟8,9,10队拉开了差距。区域赛网络赛的时候,我们队有好发挥.....
分类:
其他好文 时间:
2014-10-22 21:56:10
阅读次数:
194
一、题目描述Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".二、分析要注意几点:1、当字符串的头部或者尾部存...
分类:
编程语言 时间:
2014-10-22 21:40:18
阅读次数:
250
RGB:一个像素由红色(RED)、绿色(GREEN)、蓝色(BLUE)三元色顺序存放。每种元色占用一字节(Btye)。一个像素总共占用3字节(Byte),24比特(Bit)。
其它表示方法:RGB24、RGB888
根据RGB存放位置组合,还有BGR(蓝色、绿色、红色)序顺存放
RGBA:是在RGB的基础上增加一个透明度(Alpha)。总共4字节(Byte)共32比特(Bit)。其它...
分类:
其他好文 时间:
2014-10-22 10:06:06
阅读次数:
152
my_name = 'Zed A. Shaw'my_age = 35 # not a liemy_height = 74 # inchesmy_weight = 180 # lbsmy_eyes = 'Blue'my_teeth = 'White'my_hair = 'Brown'print "Le...
分类:
其他好文 时间:
2014-10-21 23:05:05
阅读次数:
257
eq() 方法将匹配元素集缩减值指定 index 上的一个。
通过为 index 为 2 的 div 添加适当的类,将其变为蓝色:
div { width:60px; height:60px; margin:10px; float:left;
border:2px solid blue; }
.blue { background:blue; }
...
分类:
Web程序 时间:
2014-10-21 21:36:56
阅读次数:
241
alert(0.1?+?0.2);?//不是0.3
alert(NaN?+?NaN);?//不是false?
alert(isNaN(NaN));?//true
alert(isNaN(1));?//false
alert(isNaN(‘1‘));?//false
alert(isNaN(‘blue‘));?//true
alert(isNaN(true));?...
分类:
编程语言 时间:
2014-10-21 12:31:39
阅读次数:
147
指针数组 && 数组指针
char (*ptr)[5]; //定义一个指向数组指针ptr,指向包含5个char类型的数组
char *a[5]; //定义一个指针数组a,包含5个char*类型指针
#include
int main(void)
{
char *a[5]={"red","white","blue","dark","green"};
print...
分类:
编程语言 时间:
2014-10-21 12:15:22
阅读次数:
182
题目描述:Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order re...
分类:
其他好文 时间:
2014-10-21 00:43:54
阅读次数:
304
1.首先保证你设置的SelectionBrush不是透明的颜色或者和背景色相同2.在使用SelectAll之前要保证Textox以及获取到焦点。this.textbox.SelectionBrush = Brushes.Blue;this.textbox.Focus();this.textbox.S...