- 浏览: 59676 次
- 性别:
- 来自: 深圳
最新评论
文章列表
function init()
{
var arrStr = document.cookie.split("; ");
var time ;
for(var i = 0;i < arrStr.length;i ++){
var temp = arrStr[i].split("=");
if(temp[0] == "<%=username %>"
{
time = unescape(temp[1]);
}
}
var dat ...
- 2009-07-27 19:38
- 浏览 689
- 评论(0)
At fisrt,thanks for the tips of Xia,I just run the situation he described.
When we want to print the properties of POJO, we can override the function toString() for conveninence , here is my testing code:
Created a object Student:
package mysrc;
import java.io.Serializa ...
/**
*
* @author tanglei
* @since 07.27
*/
public class MaoPao {
public static void main(String[] args){
int a[] = {5,4,3,2,1} ;
for(int i=0;i<a.length;i++)
{
for(int j=0;j<a.length-i-1;j++)
{
int temp;
if(a[j]>a[j+1] ...
- 2009-07-27 18:26
- 浏览 761
- 评论(0)