`
brinado
  • 浏览: 19564 次
  • 性别: Icon_minigender_1
  • 来自: 大连
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
在Dreamweaver8中,只要一加入表单或表单对象,文本框等等,就会在代码中加入一个<label></label>,一直没明白这个label是做什么的,今天正好看到了解释: Label 中有两个属性是非常有用的,一个是FOR、另外一个就是ACCESSKEY ...

java.exe jar lib

    博客分类:
  • java
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 ...
不同名文件有可能内容相同,在上传时就需要验证一下,避免重复上传。 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 ...
在软计算课程上,老师让我们编程实现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 ...
Global site tag (gtag.js) - Google Analytics