创建项目HelloWord 命令简介 创建项目: 文件介绍 启动项目并测试 连接测试: 视图和URL 设置 ...
分类:
其他好文 时间:
2016-05-27 10:48:58
阅读次数:
229
1. 安装步骤 第一步,安装wine。 直接进入ubuntu软件中心搜索wine,点击安装; 第二步:安装常用组件。 在终端输入“winetricks”,就可以选择安装Windows DLLs以及其他可能需要的常用组件,比如:riched20,riched30,ie8,flash11,gdiplus ...
分类:
其他好文 时间:
2016-05-27 10:45:36
阅读次数:
188
<!--?xml version="1.0" encoding="UTF-8" standalone="no"?--> cookie 保存数据 document.cookie=name+'='+value+';expires='+date; //name=shiyou ;expires=Tue Ma ...
分类:
其他好文 时间:
2016-05-27 10:47:22
阅读次数:
272
1.前台代码 <PagerTemplate><div style="text-align:center; color:Blue"> <asp:LinkButton ID="cmdFirstPage" runat="server" CommandName="Page" CommandArgument= ...
分类:
其他好文 时间:
2016-05-27 10:44:21
阅读次数:
150
发现这个月准备竞赛完全没有更新哎。。。 改了下某华大一c++测试题。。。网上对虚继承讲的要么太繁琐要么不到位,自力更生 我们可以看出,通过虚继承方式的派生类并不调用基类的构造函数。 当我们注释掉B,C对A的virtual继承方式后,由于派生类不允许访问间非虚拟接继承的基础类,程序会报错。 然后我对程 ...
分类:
其他好文 时间:
2016-05-27 10:44:11
阅读次数:
176
工作中遇到的问题 <ion-slide-box show-pager="true" ng-if="carouseList" on-slide-changed="slideHasChanged($index)" class="slidebox" auto-play="true" slide-inter ...
分类:
其他好文 时间:
2016-05-27 10:46:29
阅读次数:
711
1.更新了blade模板却没有更新缓存 通过使用ftp上传文件到服务器,更新了blade模板,却没有更新缓存,经查,原因是系统时间的影响,通过ftp上传的模板文件修改时间与缓存文件的时间不一致,导致模板修改时间一直小于缓存文件时间,导致Laravel一直误判缓存没有过期 2.Laravel开启了De ...
分类:
其他好文 时间:
2016-05-27 10:45:29
阅读次数:
165
题意:三种物品分别有a b c个(a<=b<=c),现在每种物品各选一个进行组合。要求每种最和最多出现一次。且要求任意两个物品的组合在所有三个物品组合中的出现总次数不能超过n。 要求给出一个方案,使得我们能够生成的组合数最多。 分析: 首先我们可以简单的处理一种情况,就是c<=n的情况。 因为我们枚 ...
分类:
其他好文 时间:
2016-05-27 10:43:11
阅读次数:
155
题意:统计区间 [a,b] 中不含 4 和 62 的数字有多少个。 题解:这是数位DP的入门题了,首先要理解数DP的原理,DP[i][j]:代表第i位的第j值,举个栗子:如4715 数位数是从右向左的,则第一位是5,第二位是1,第三位是7,第四位是4。所以如果要求0到4715,ans=dp[4][x ...
分类:
其他好文 时间:
2016-05-27 10:43:24
阅读次数:
137
/* //My_lame.h */ #pragma once#include "stdafx.h"#include <windows.h>#include <stdio.h>#include <stdlib.h>#include <string>#include "BladeMP3EncDLL.h" ...
分类:
其他好文 时间:
2016-05-27 10:44:25
阅读次数:
218
/// Update the value stored in the dictionary for the given key, or, if the /// key does not exist, add a new key-value pair to the dictionary. /// // ...
分类:
其他好文 时间:
2016-05-27 10:43:53
阅读次数:
111
15.1 什么是查询缓存 mybatis提供查询缓存,用于减轻数据压力,提高数据库性能。 mybaits提供一级缓存,和二级缓存。 一级缓存是SqlSession级别的缓存。在操作数据库时需要构造 sqlSession对象,在对象中有一个数据结构(HashMap)用于存储缓存数据。不同的sqlSes ...
分类:
其他好文 时间:
2016-05-27 10:42:25
阅读次数:
157
1.argument to type "char *"is incompatible with parameter of type "LPWSTR" 解决:Project->Properties->Configuration Properties->General->Character set->u ...
分类:
其他好文 时间:
2016-05-27 10:41:50
阅读次数:
162
1. 效果显示 3 显示3D效果,2显示2D效果。 2. 阻焊塞孔 双击过孔显示属性 solder Mask Expansions Force complete tenting on top Force complete tenting on bottom ...
分类:
其他好文 时间:
2016-05-27 10:42:28
阅读次数:
158
转载请注明出处:http://blog.csdn.net/crazy1235/article/details/51477967Subject
出处:https://leetcode.com/problems/binary-tree-level-order-traversal-ii/
Given a binary tree, return the bottom-up level order tra...
分类:
其他好文 时间:
2016-05-27 09:38:23
阅读次数:
231
效果图实现代码public class ScrollBanner extends LinearLayout { private TextView mBannerTV1;
private TextView mBannerTV2;
private Handler handler;
private boolean isShow;
private int startY1...
分类:
其他好文 时间:
2016-05-27 09:39:37
阅读次数:
130