在所有需要返回的界面添加如下代码即可 $(function(){ document.addEventListener('plusready',function(){ var webview = plus.webview.currentWebview(); plus.key.addEventListe ...
分类:
移动开发 时间:
2020-03-16 15:04:25
阅读次数:
359
Given a non-negative integer represented as non-empty a singly linked list of digits, plus one to the integer. You may assume the integer do not conta ...
分类:
其他好文 时间:
2020-03-15 13:27:25
阅读次数:
48
常规的解决方案见:https://www.cnblogs.com/shaoyu/p/11477125.html 问题:当xml文件在src/main/java目录下时,在application.yml中配置Mapper文件路径无效,当xml文件在resource下时路径有效,原因不明。 我通过上面连 ...
分类:
其他好文 时间:
2020-03-15 13:26:13
阅读次数:
51
一直对这个概念比较模糊,读到《C++ primer》发现其中有讲解,截下图来记录。 ...
分类:
编程语言 时间:
2020-03-13 13:24:41
阅读次数:
47
问题:使用CONN / AS SYSDBA(注意空格)命令登录win10系统的Oracle11g数据库,失败,显示没有权限。 C:\Users\25836>SQLPLUS/NOLOG SQL*Plus: Release 11.2.0.1.0 Production on 星期三 3月 7 18:18: ...
分类:
数据库 时间:
2020-03-13 11:28:33
阅读次数:
114
dedecms设置伪静态 1 rewrite "^/list-([0-9]+)\.html$" /plus/list.php?tid=$1 last; 2 rewrite "^/list-([0-9]+)-([0-9]+)-([0-9]+)\.html$" /plus/list.php?tid=$1 ...
分类:
其他好文 时间:
2020-03-13 10:18:51
阅读次数:
54
SGA_MAX_SIZE是从9i以来就有的作为设置SGA大小的一个参数,而SGA_TARGET则是从10g才有的一个新参数,作为配合10g自动管理SGA而出现的,下面以实验的方式,深入解析这2个参数的区别和作用 [oracle@bak ~]$ sqlplus / as sysdba SQL*Plus ...
分类:
数据库 时间:
2020-03-12 23:42:49
阅读次数:
69
设置SQL提示符,可以高效确定用户名和SID。 如果想避免每次登录都需要执行这条命令,还可以将这条命令写入到 glogin.sql 文件,sqlplus 每次启动都会先读取这个文件,因此,可以将一些需要重复输入的指令写入这个文件中。 文件地址为: SQL plus 自定义提示符变量 _connect ...
分类:
数据库 时间:
2020-03-10 10:27:19
阅读次数:
89
起因 花两周通读了一遍《C++ Primer》,积攒的疑惑一扫而光。 前因 "利用C++11可变模板,封装调用dll导出函数" 本以为已经很好用了,最近抽时间巩固下知识体系,发现自己道行不够! 新方案 充分利用函数模板的实参推断,取得了“近似动态语言”的使用体验。 感想 C++的语义细品之后,如此简 ...
分类:
编程语言 时间:
2020-03-10 01:09:52
阅读次数:
127
#include<iostream> #include<string> using namespace std; const int Max = 550; int Compare(int a[], int b[]); void Plus(int a[], int b[], int n); void ...
分类:
其他好文 时间:
2020-03-09 18:21:30
阅读次数:
73