public abstract class BaseFragment extends Fragment implements IBaseView { private List<BasePresenter> mInjectPresenters; private View mLayoutView; pr ...
分类:
其他好文 时间:
2019-08-04 20:02:58
阅读次数:
115
1.下载 https://github.com/kdlucas/byte-unixbench/archive/v5.1.3.tar.gz 2.修改Makefile 交叉编译 #CC=gccCC = arm-linux-gnueabihf-gcc 3.make 4.修改Run 将main函数中的 pr ...
分类:
其他好文 时间:
2019-08-04 19:30:22
阅读次数:
138
阅读前提:了解Tomcat服务器和Servlet 在web开发中我们可以通过Servlet的Response对象对浏览器输出我们的网页内容 这样虽然可以进行网页输出,但是代码编写极其繁杂,冗余很多,所以jsp就出现了; 先描述一下现象,首先我们可以在myeclipse新建Manager的web pr ...
分类:
Web程序 时间:
2019-08-04 01:46:14
阅读次数:
337
阅读目录 什么是profile,为什么需要profile? 方法一:配置profile bean 方法二:在XML中配置bean 激活profile 测试 代码 阅读目录 什么是profile,为什么需要profile? 方法一:配置profile bean 方法二:在XML中配置bean 激活pr ...
分类:
编程语言 时间:
2019-08-02 16:17:35
阅读次数:
138
''' #list的增删查改及其排序 #列表的增 list=["hello","Linda",13,"welcome","to","China"] #list的增 a=list.append("Chichy")#增加字符串 print(list) b=list.append(123)#增加数字 pr... ...
分类:
编程语言 时间:
2019-08-02 00:16:41
阅读次数:
102
代码演示: using System.Collections;using System.Collections.Generic;using UnityEngine; public class TagFind : MonoBehaviour { private GameObject thing; pr ...
分类:
其他好文 时间:
2019-07-31 18:51:54
阅读次数:
137
"源码" 依赖 注:github中源码依赖是精简后的结果. 配置 取消数据库自动配置 自动配置默认加载spring.datasource. 配置 若此配置不存在,spring boot报错 配置多个数据库 src/main/resources/application.yml 加载多数据库配置 @Pr ...
分类:
数据库 时间:
2019-07-31 16:49:39
阅读次数:
521
一、mycli介绍 MySQL的命令行客户端,可以执行自动完成和语法突出显示。 主页:http://mycli.net文档:http://mycli.net/docs github:https://github.com/dbcli/mycli 二、实验环境 VMware Workstation Pr ...
分类:
其他好文 时间:
2019-07-29 19:09:48
阅读次数:
213
1、添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freemarker</artifactId></dependency>2、配置application.pr ...
分类:
编程语言 时间:
2019-07-28 09:37:54
阅读次数:
134
关于冒泡法案例 !!!问题:用冒泡法对10个数排序(由小到大) 冒泡法的思想:将相邻两个数比较,将小的调到前头。 #include <stdio.h>int main(){ int i,j,t,a[10]; for(i = 0;i < 10;i++){ scanf("%d",&a[i]); } pr ...
分类:
编程语言 时间:
2019-07-25 16:16:46
阅读次数:
111