摘要:
MySQL的写法: 第一种写法: select u.name,group_concat(r.name separator ',') rolesnamefrom user u left join user_role ur on u.id = ur.user_idleft join role r on 阅读全文
阅读排行榜
Java 面试知识点汇总
2017-05-24 10:08 by 甘雨路, 391 阅读, 收藏,
摘要:
OOP:(Object Oriented Programming )面向对象编程 重用性、灵活性和扩展性 高内聚、低耦合 面向过程编程与面向对象编程的区别:举例,自己做饭吃与去饭馆吃,去饭馆只需要知道吃什么菜就行,不需要知道怎么做的 AOP AOP:(Aspect Oriented Programm 阅读全文
iOS Reachability的基本用法
2016-01-27 17:41 by 甘雨路, 386 阅读, 收藏,
摘要:
#import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end #import "App 阅读全文
Java 使用jaxp添加节点
2016-12-12 11:24 by 甘雨路, 368 阅读, 收藏,
摘要:
jobs 56 Alis 32 package jaxp; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.... 阅读全文
SWIFT 通过字符串创建相关的类
2016-02-25 23:11 by 甘雨路, 362 阅读, 收藏,
摘要:
import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(application: UIApplicat 阅读全文