yinusxxxx

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2016年5月8日

摘要: Write a reverseWords function that accepts a string a parameter, and reverses each word in the string. Every space should stay, so you cannot usewords 阅读全文
posted @ 2016-05-08 18:32 yinusxxxx 阅读(128) 评论(0) 推荐(0) 编辑

2016年5月2日

摘要: package controller; import model.ClazzEntity; import model.StudentEntity; import model.TeacherEntity; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereo... 阅读全文
posted @ 2016-05-02 21:59 yinusxxxx 阅读(488) 评论(0) 推荐(0) 编辑

2016年4月16日

摘要: 1 package gui; 2 3 import action.C2SAction; 4 import action.CourseAction; 5 import action.StudentAction; 6 import javafx.application.Application; 7 import javafx.geometry.Insets; 8 i... 阅读全文
posted @ 2016-04-16 19:52 yinusxxxx 阅读(229) 评论(0) 推荐(0) 编辑

摘要: 无法绑定由多个部分组成的标识符 出现在sql server的语句中 解决方法 去掉第二个db_courses 私有的作用域,无需指定表名。 阅读全文
posted @ 2016-04-16 18:53 yinusxxxx 阅读(189) 评论(0) 推荐(0) 编辑

2016年4月13日

摘要: -- Problem 1 -- (*) Find the last element of a list. -- (Note that the Lisp transcription of this problem is incorrect.) -- Example in Haskell: -- Prelude> myLast [1,2,3,4] -- 4 -- Prelude> myLast... 阅读全文
posted @ 2016-04-13 18:39 yinusxxxx 阅读(174) 评论(0) 推荐(0) 编辑

2016年4月10日

摘要: import dao.CourseDao; import model.Course; import view.C2SView; import view.CourseView; import view.StudentView; import java.sql.SQLException; import java.util.List; import java.util.Scanner; /** ... 阅读全文
posted @ 2016-04-10 15:36 yinusxxxx 阅读(226) 评论(0) 推荐(0) 编辑

摘要: package view; import action.C2SAction; import action.CourseAction; import action.StudentAction; import model.C2S; import model.Course; import model.Student; import java.sql.SQLException; import jav... 阅读全文
posted @ 2016-04-10 15:35 yinusxxxx 阅读(147) 评论(0) 推荐(0) 编辑

摘要: package action; import dao.C2SDao; import model.C2S; import java.sql.SQLException; import java.util.List; /** * Created by yinus * Date:2016/4/6 * Time:18:43 */ public class C2SAction { p... 阅读全文
posted @ 2016-04-10 15:34 yinusxxxx 阅读(240) 评论(0) 推荐(0) 编辑

摘要: package dao; import model.C2S; import utils.Dbtuil; import java.sql.*; import java.util.ArrayList; import java.util.List; /** * Created by yinus * Date:2016/4/6 * Time:18:44 */ public class C... 阅读全文
posted @ 2016-04-10 15:33 yinusxxxx 阅读(208) 评论(0) 推荐(0) 编辑

摘要: package model; import java.util.Date; /** * Created by yinus * Date:2016/4/6 * Time:18:44 */ public class C2S { private int stu_id; private int cou_id; private double credit; p... 阅读全文
posted @ 2016-04-10 15:32 yinusxxxx 阅读(210) 评论(0) 推荐(0) 编辑