- 浏览: 19564 次
- 性别:
- 来自: 大连
最近访客 更多访客>>
最新评论
-
疯狂的草儿:
谢谢 一个小的知识点
HTML中LABEL标签的用途[转] -
beyondsanli:
ClassA test1= new ClassA(12); ...
我的理解 instanceof 用法 -
kenlistian:
哈,我安装dbi很顺利,参考我的帖子。http://www.i ...
Ruby连接Mysql数据库 -
yelaiwei:
用instanceof来判断类的类型是发生在编译期而不是在运行 ...
我的理解 instanceof 用法 -
dds543:
你那个instanceof int[]对吗?我觉得不对阿
因为 ...
我的理解 instanceof 用法
文章列表
在Dreamweaver8中,只要一加入表单或表单对象,文本框等等,就会在代码中加入一个<label></label>,一直没明白这个label是做什么的,今天正好看到了解释:
Label 中有两个属性是非常有用的,一个是FOR、另外一个就是ACCESSKEY ...
The Jar tool automatically puts a default manifest with the pathname META-INF/MANIFEST.MF into any JAR file created. Special JAR file functionality can be enabled, such as package sealing, by modifying the default manifest. Typically, modifying the default manifest involves adding special-purpose hea ...
- 2009-05-27 22:14
- 浏览 1384
- 评论(0)
不同名文件有可能内容相同,在上传时就需要验证一下,避免重复上传。
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
/**
*
* @author zzheng
*/
public class MD5
{
/**
* @param args the command line arguments
*/
public MD5() throws NoSuchAlgorithmException
{
md = Me ...
- 2009-05-27 22:11
- 浏览 1525
- 评论(0)
在软计算课程上,老师让我们编程实现Hopfield网、联想记忆、BM、BP、SOFM、遗传算法。正在学习Ruby,就用ruby实现了上述内容。上述实现的内容比较简单,但没有对每个程序的输入和输出做说明。如果有任何疑问可以留言。希望和大家交流!
Hopfield
w = Array.new(4)
4.times do |i|
w[i] = Array.new(4,0)
4.times do |j|
if j > i
w[i][j] = (rand 101) / 100.0 * (-1) ** (rand 2)
else
w[ ...
已经尝试连接Mysql数据库好久了,都没有连接成功.
Mac OS 10.5.2,
Mysql 5.0.45
Ruby 1.8.6
下载了ruby-dbi
按照Readme上面的方法,已经显示安装成功了
Brinados-iMac:ruby-dbi brinado$ ruby setup.rb config --with=dbi,dbd_mysql
entering config phase...
config done.
Brinados-iMac:ruby-dbi brinado$ ruby setup.rb setup
entering setup phase...
settin ...
intanceof()方法主要用来判断变量的类型。
使用Object类型在构造器中,间接达到了多态的效果。
import java.lang.reflect.*;
class ClassA{
private int a;
private String b;
private int[] c;
ClassA(Object temp){
if(temp instanceof Integer){//判断输入的是整型
a = Integer.parseInt(temp.toString());
System.out.println("this is ...