- Jul 09 Wed 2008 21:13
[創作]孤單
- Jun 25 Wed 2008 00:44
AI - Artificial intelligence
Artificial intelligence (AI) is both the intelligence of machines and the branch of computer science which aims to create it.
- Mar 19 Wed 2008 04:20
toHex function - byte to string
public static String toHex(byte b){
return (""+"0123456789abcdef".charAt(0xf&b>>4)+"0123456789abcdef".charAt(b&0xf));
return (""+"0123456789abcdef".charAt(0xf&b>>4)+"0123456789abcdef".charAt(b&0xf));