摘要:
#include<iostream>using namespace std;/*int gcd( int a,int b){ int r = 0; while(b!=0) { r = a%b; a = b; b = r; } return a; } */int gcd( int a,int b){ if(b==0) { return a; } else ... 阅读全文
posted @ 2011-11-10 16:25
hibernate3例子
阅读(147)
评论(0)
推荐(0)
摘要:
package cn.pdsu; /** * 类说明:学生信息封装 * * @author 作者: LiuJunGuang * @version 创建时间:2011-11-9 下午02:30:50 */
public class Student { private int id; private String name; private String sex; private String resume; public Student(int id, String name, String sex, String resume) { super(); this... 阅读全文
posted @ 2011-11-10 01:53
hibernate3例子
阅读(274)
评论(0)
推荐(0)
浙公网安备 33010602011771号