码迷,mamicode.com
首页 >  
搜索关键字:red    ( 13693个结果
C# 枚举类型操作
//定义一个枚举 public enum Colors { Red, Green, Blue, Yellow }; //根据key找value string name = Enum.GetName(typeof(Colors), 3);//根据value找key int aa = Colors.Y....
分类:Windows程序   时间:2014-11-03 10:07:23    阅读次数:179
red hat 系列本地YUM
[Server]name=Serverbaseurl=file:///yum/Serverenabled=1gpgcheck=0[VT]name=VTbaseurl=file:///yum/VTenabled=1gpgcheck=0[Cluster]name=Clusterbaseurl=file:///yum/Clusterenabled=1gpgcheck=0[ClusterStorage]name=Clusterbaseurl=file:///yum/ClusterStorageenabled=1gpg..
分类:其他好文   时间:2014-11-03 01:32:55    阅读次数:172
jQuery学习笔记进阶
1.筛选方法.find(selector) 查找集合每个元素的子节点搜索所有p元素中的后代 span 元素,并将其颜色设置为红色:$("p").find("span").css('color','red');.filter(selector) 过滤当前集合内元素改变所有 div 的颜色,然后向div...
分类:Web程序   时间:2014-11-01 23:08:50    阅读次数:290
swift 初见-6集合类型与Cocoa Touch混编
// Playground - noun: a place where people can playimport UIKitvar str = "Hello, playground"// color与=号之间必须有个空格let colors =[ "Air Force Blue":(red:...
分类:编程语言   时间:2014-11-01 09:43:28    阅读次数:206
cocos2dx中的CCLayerColor
颜色图层在游戏中主要用来烘托背景,可以按照RGB设置填充颜色,同时还可以设置图层的透明度(opacity),常用于显示背景颜色图层还存在一个特殊的子类:CCLayerGradient,是具有颜色渐变效果的颜色图层可以设置背景的渐变效果,Opacity:透明度ccc4(Red,Green,Blue,O...
分类:其他好文   时间:2014-10-31 23:38:18    阅读次数:227
Ubuntu下deb包的安装方法
deb是debian linus的安装格式,跟red hat的rpm非常相似,最基本的安装命令是:dpkg -i file.debdpkg 是Debian Package的简写,是为Debian 专门开发的套件管理系统,方便软件的安装、更新及移除。所有源自Debian的Linux发行版都使用dpkg...
分类:系统相关   时间:2014-10-31 23:23:11    阅读次数:267
红黑树
介绍还有一种平衡二叉树:红黑树(Red Black Tree),红黑树由Rudolf Bayer于1972年发明,当时被称为平衡二叉B树(symmetric binary B-trees),1978年被Leonidas J. Guibas和Robert Sedgewick改成一个比較摩登的名字:红黑...
分类:其他好文   时间:2014-10-31 20:36:56    阅读次数:199
转载:Ubuntu下deb包的安装方法
转载:Ubuntu下deb包的安装方法,http://blog.csdn.net/kevinhg/article/details/5934462deb是debian linus的安装格式,跟red hat的rpm非常相似,最基本的安装命令是:dpkg -i file.debdpkg 是Debian ...
分类:系统相关   时间:2014-10-31 18:54:58    阅读次数:240
[LeetCode]Sort Colors
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the integers ...
分类:其他好文   时间:2014-10-31 17:29:05    阅读次数:129
一级指针,二级指针,指向数组的指针
对"black,green,yellow,pin,red"几个单词排序01#include #include void sort(char (*p)[20],int n){ char *q; char b[20]; q=b; int i,j; for(i=0;i0) { strcpy(q,...
分类:编程语言   时间:2014-10-31 15:09:10    阅读次数:308
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!