码迷,mamicode.com
首页 >  
搜索关键字:creates    ( 750个结果
AOP
1.1 AOP介绍 1.1.1 什么是AOP 1. 在软件业,AOP为Aspect Oriented Programming的缩写,意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护(增强方法)的一种技术。 2, AOP是OOP(面向对象编程)的延续,是软件开发中的一个热点,也 ...
分类:其他好文   时间:2018-09-20 23:54:05    阅读次数:347
JDBC REVIEW
jdbc:java database connectivity 数据库和Java之间的一座桥梁。它提供了一套操作数据库的标准规范,开发者可以在Java中使用,实现数据库的增删改查。 JDBC规范让Java程序和数据库实现了松耦合,使切换不同数据库变得简单。 JDBC四个核心接口: DriverMan ...
分类:数据库   时间:2018-09-19 13:29:26    阅读次数:165
VS2010/MFC编程入门之五十一(图形图像:GDI对象之画刷CBrush)
上一节中鸡啄米主要讲的是画笔CPen的用法,前面也说了,GDI对象中最常用的就是画笔和画刷,本节就讲讲画刷CBrush。 鸡啄米依然是通过实例的方式来说明画刷的用法。此实例要实现的功能是,对话框上有一个按钮控件和一个图片控件,点击按钮弹出颜色对话框,然后在颜色对话框中选择颜色并点击“确定”后,图片控 ...
分类:编程语言   时间:2018-09-15 10:37:59    阅读次数:174
DG搭建内容和步骤
DATA guard 搭建内容 主库通过网络把日志文件传输到副库 实现原理:主库是好的,副库安装数据库软件 oracle软件目录 /u01/app/oraI 查看环境变量 env|grep ORACLE ps -ef|grep smon v$database 反应的是控制文件信息 搭建DG必须开归档 ...
分类:其他好文   时间:2018-09-10 21:51:33    阅读次数:273
e740. 向标签中加入一个图标
This example creates a JLabel component with an icon. This example adds or replaces the icon in an existing JLabel component: The methods to control t ...
分类:其他好文   时间:2018-09-06 11:03:49    阅读次数:148
e858. 将键盘键和事件绑定
This example creates a number of keystrokes and adds them to the input map of a component. When a keystroke is added to an input map, an action name m ...
分类:其他好文   时间:2018-09-06 10:59:38    阅读次数:124
react框架实现点击事件计数小案例
代码块: import React from 'react'; import ReactDOM from 'react-dom'; import './index.css'; // import App from './App'; import {BrowserRouter as Router,Ro ...
分类:其他好文   时间:2018-09-02 00:06:41    阅读次数:411
django之admin站点
Admin站点 通过使用startproject创建的项目模版中,默认Admin被启用 1.创建管理员的用户名和密码 2.在应用内admin.py文件完成注册,就可以在后台管理中维护模型的数据 查找admin文件:在INSTALLED_APPS项中加入django.contrib.admin,Dja ...
分类:其他好文   时间:2018-09-01 12:25:53    阅读次数:104
Automated EBS Snapshots using AWS Lambda & CloudWatch
In this post, we'll cover how to automate EBS snapshots for your AWS infrastructure using Lambda and CloudWatch. We'll build a solution that creates... ...
分类:其他好文   时间:2018-08-31 00:24:27    阅读次数:224
MapBuilder,操作集合工具类
public class MapBuilder { /** * Creates an instance of {@code HashMap} */ public static <K, V> HashMap<K, V> newHashMap() { return new HashMap<>(); } ...
分类:其他好文   时间:2018-08-27 21:47:43    阅读次数:557
750条   上一页 1 ... 22 23 24 25 26 ... 75 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!