码迷,mamicode.com
首页 >  
搜索关键字:blue    ( 1833个结果
javascript学习笔记---ECMAScriptECMAScript 对象----定义类或对象
使用预定义对象只是面向对象语言的能力的一部分,它真正强大之处在于能够创建自己专用的类和对象。ECMAScript 拥有很多创建对象或类的方法。原始的方式因为对象的属性可以在对象创建后动态定义(后绑定),类似下面的代码:var oCar = new Object;oCar.color = "blue"...
分类:编程语言   时间:2014-06-04 20:50:13    阅读次数:343
Sort Colors
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 red, wh...
分类:其他好文   时间:2014-06-04 20:49:33    阅读次数:276
LeetCode: Sort Colors 题解
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 red, wh...
分类:其他好文   时间:2014-06-03 13:13:50    阅读次数:537
解决IE6、IE7、Firefox兼容最简单的CSS Hack
写三句代码来控制一个属性,区别Firefox,IE7,IE6: background:orange; *background:green !important; *background:blue; 说明:这段代码会使在Firefox中,背景呈橙色;IE7中为绿色;IE6中为蓝色。道...
分类:Web程序   时间:2014-05-30 22:12:39    阅读次数:341
Reverse Words in a String
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".click to show clarification.Cl...
分类:其他好文   时间:2014-05-30 16:25:58    阅读次数:233
JavaScript高级程序设计之作用域链
JavaScript只有函数作用域;每个函数都有个作用域链直达window对象。变量的查找由内而外层层查找,找到即止。同时不仅可以查找使用,甚至可以改变外部变量。var color = "blue";function changeColor() { var anotherColor = "re...
分类:编程语言   时间:2014-05-28 19:03:43    阅读次数:330
【Android】 导入项目报错的解决方案
1、打项目的properties -->android 为其指一个运版本,2、修改default properties 文件 ,改相应版本等级3、选中项目,单击右键,选中properties ,打开android 选中相应 sdk4、project -->clean. KO(blue moon .....
分类:移动开发   时间:2014-05-26 00:29:38    阅读次数:339
【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 i...
分类:其他好文   时间:2014-05-24 20:30:21    阅读次数:342
Reverse Words in a String
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the". 1 Class Solution{ 2 public: ....
分类:其他好文   时间:2014-05-23 02:59:21    阅读次数:260
RGB 转化 HSV代码
public void toHSV3( int red , int green , int blue ){ double maxRGB = FqMath.max( red , green , blue );// double minRGB = FqMath.min( red , green , blue ); double itemp = maxRGB; //...
分类:其他好文   时间:2014-05-21 14:50:42    阅读次数:305
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!