摘要: 首先还是xml的配置文件 接着是假定dao的类 生成一个对象很方便,甚至@Component(value="dao")中的value=都可以不写,变成 @Component("dao") 然后是假定service的类 与配置文件中使用<bean id="service" class="com.swi 阅读全文
posted @ 2017-11-17 17:56 Advancing-Swift 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 二维数组就是数组中的元素还是数组 二维数组的声明 int arr[3][4]; 这个二维数组当中包含3个一维数组,每个一维数组中有4个元素。 二维数组的赋值 int arr[3][4]={{1,2,3,4},{5,6,7,8},{9,10,11,12}}; int arr[3][4]={{1,2,3 阅读全文
posted @ 2017-11-17 09:40 Advancing-Swift 阅读(733) 评论(0) 推荐(0) 编辑
摘要: 斐波纳契数列 Fibonacci 输出这个数列的前20个数是什么? 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 使用数组实现输出数列的前30个数 阅读全文
posted @ 2017-11-17 09:23 Advancing-Swift 阅读(964) 评论(0) 推荐(0) 编辑