7.1 帮助命令 7.1.1 man 获得帮助信息 1)基本语法: man [命令或配置文件] (功能描述:获得帮助信息) (1)显示说明 NAME 命令的名称和单行描述 SYNOPSIS 怎样使用命令 DESCRIPTION 命令功能的深入讨论 EXAMPLES 怎样使用命令的例子 SEE ALS ...
分类:
其他好文 时间:
2018-11-27 14:50:23
阅读次数:
173
PS:本文使用jdk1.7解析1.Object类 的equals 方法 复制代码代码如下: /** * Indicates whether some other object is "equal to" this one. * <p> * The {@code equals} method impl ...
分类:
编程语言 时间:
2018-11-26 15:03:49
阅读次数:
228
原文地址:https://www.joelonsoftware.com/2003/10/08/the-absolute-minimum-every-software-developer-absolutely-positively-must-know-about-unicode-and-charact ...
分类:
编程语言 时间:
2018-11-25 20:04:46
阅读次数:
206
(1)Including other URLconfs 比如一个website项目urls.py, include了其他的urls: ? 1 2 3 4 5 6 7 8 from django.conf.urls import include, url urlpatterns = [ # ... s ...
分类:
Web程序 时间:
2018-11-24 23:56:37
阅读次数:
241
Kefa decided to celebrate his first big salary by going to the restaurant. He lives by an unusual park. The park is a rooted tree consisting of n vert ...
分类:
其他好文 时间:
2018-11-24 22:33:27
阅读次数:
253
题面 "传送门" 分析 考虑DP 设$dp[i][j]$表示前i个数选出的序列长度为j的方案数 状态转移方程为: $$ dp[i][j]= \begin{cases}dp\left[ i 1\right] \left[ j 1\right] +dp\left[ i 1\right] \left[ j ...
分类:
编程语言 时间:
2018-11-24 22:28:42
阅读次数:
321
1 namespace AStuff{ 2 template 3 class A 4 { 5 public: 6 void swap(A *other) 7 { 8 using std::swap; 9 swap(pImpl,other.plmpl); 10 } 11 private: 12 AIm... ...
分类:
其他好文 时间:
2018-11-24 20:54:48
阅读次数:
126
前言 在第一单元中,我们了解了 "ML":Markup Language,它的作用是: tell the strure of content;在这一单元,进一步认识 HT,它的作用是:link to other pages HT 的相关知识 以<a href="elixir.html'>elixir ...
分类:
Web程序 时间:
2018-11-24 17:57:18
阅读次数:
218
修改表的默认字符集: ALTER TABLE table_name DEFAULT CHARACTER SET character_name; 修改表字段的默认字符集: ALTER TABLE table_name CHANGE field field field_type CHARACTER SE ...
分类:
数据库 时间:
2018-11-24 14:23:00
阅读次数:
192
本文针对react navigation^3.0.0版本,版本不对的话,请不要看本文,直接看官方英文文档 ? 最近一直在学习RN,没找到什么好的视频,所以一直看文档,一路上来虽然遇到一些乱七八糟的bug,但是能比较友好的解决掉 直到我使用 ,这个官方文档上说 的导航组件,搞的我心态爆照,调试了一下午 ...
分类:
其他好文 时间:
2018-11-24 11:32:09
阅读次数:
2717