⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 color.java

📁 j2me 高级UI
💻 JAVA
字号:
/**
 * 作者:cat 戚永城
 * 时间:2008-3-1
 * QQ:415898635
 * E-Mail:	415898635@qq.com
 * 			qyc_12345@163.com
 * 
 * */
package org.qui.info;

public class Color {

	public int r = 0;

	public int g = 0;

	public int b = 0;

	public Color() {
		this.r = 0;
		this.g = 0;
		this.b = 0;
	}

	public Color(int r, int g, int b) {
		this.r = 0;
		this.g = 0;
		this.b = 0;
	}

	public Color(int ff) {
		// 利用10 to 16转换
		this.r = 0;
		this.g = 0;
		this.b = 0;
	}

	public static int rgb2ff(int r, int g, int b) {
		return 0x0;
	}

	public static int[] ff2rgb(int i) {
		int[] c = new int[3];
		c[0] = i << 16;
		c[1] = i << 8;
		c[2] = i << 0;
		return c;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -