Skip to content

Instantly share code, notes, and snippets.

View doomhush's full-sized avatar

咾咔叽 doomhush

View GitHub Profile
@doomhush
doomhush / main.cpp
Created August 20, 2019 14:58
windows service session 0
#include <Windows.h>
#include <WtsApi32.h>
#include <tchar.h>
#include <UserEnv.h>
#include <strsafe.h>
#include <stdio.h>
#include <tlhelp32.h>
#pragma comment(lib, "Userenv.lib")
#pragma comment(lib, "Wtsapi32.lib")
#pragma comment(lib, "advapi32.lib")
@doomhush
doomhush / Spring实战(1).md
Last active November 30, 2018 14:36
[spring实战] #学习笔记 #spring学习

写在前面:从今天开始,我要开始学习《spring实战 第4版》!这本书我已经买了两年了,之前看过几次都放弃了,这次要好好的看完它,希望在今年结束之前能读完。同时也通过读书笔记把理解和感悟记录下来,加强记忆和理解。


第一章 Spring之旅

名词理解

  • POJO:简单普通的java对象。就是一个普通的类,它也许具有一些属性,这些属性的get和set方法可以是随意命名的。