码迷,mamicode.com
首页 >  
搜索关键字:nta    ( 5390个结果
NPM install -save 和 -save-dev 傻傻分不清
本文原文地址:https://www.limitcode.com/detail/59a15b1a69e95702e0780249.html 回顾 npm install 命令 最近在写Node程序的时候,突然对 npm install 的-save和-save-dev 这两个参数的使用比较混乱。其实 ...
分类:其他好文   时间:2019-01-12 18:00:14    阅读次数:192
Python字符串常见操作
字符串常见操作: ...
分类:编程语言   时间:2019-01-12 15:17:22    阅读次数:147
mysql常见错误
01、show database;ERROR 1064 (42000): You have an error in your SQL syntax; 解决办法:把show database; 改为 show databases; 漏了一个s 02、待续。。 ...
分类:数据库   时间:2019-01-12 10:33:22    阅读次数:153
绘制扇形
实现效果: 知识运用: Graphics类中的DrawPie方法 public void DrawPie (Pen pen,Rectangle rectangle, startAngle, float sweepAngle) public void DrawPie (Pen pen, int x,i ...
分类:其他好文   时间:2019-01-11 23:15:29    阅读次数:218
旧版弹性盒
一、旧版弹性盒模型 1、display:box 说明:(必须加前缀)设置弹性盒使用如下属性,必须在父代设置display:box; 2、box-orient 说明:在父级上设置该属性,则子代按水平排列或竖直排列 注:所有主流浏览器不支持该属性,必须加上前缀 1)horizontal 水平排列,子代总 ...
分类:其他好文   时间:2019-01-11 22:11:21    阅读次数:174
绘制椭圆
实现效果: 知识运用: Graphics类中的DrawEllipse方法 public void DrawEllipse (Pen pen,Rectangle rect) //绘制边界由Rectangle结构指定的椭圆 public void DrewEllipse (Pen pen ,int x ...
分类:其他好文   时间:2019-01-11 21:16:25    阅读次数:211
java iterator(迭代器)
任何容器类,都必须有某种方式可以插入元素并将它们再次取出,毕竟持有事物是容器最基本的工作,对于List,add()插入fang,get()取出,如果从更高层的角度思考,会发现这里有个确定:要用容器,必须对容器的确切类型编程,这样如果原本是List编码的,但是后来要应用于Set,那么此时该怎么办,是重 ...
分类:编程语言   时间:2019-01-11 20:40:21    阅读次数:165
ssh tunnel
https://peppoj.net/2012/10/tunnel-http-traffic-encrypted-using-polipo-and-ssh/ Tunnel HTTP traffic encrypted, using Polipo and SSH SSH can be used to ...
分类:其他好文   时间:2019-01-11 17:19:09    阅读次数:170
20. Valid Parentheses
class Solution { public boolean isValid(String s) { if(s == null) return false; Stack stack = new Stack(); String left = "([{"; String right = ")]}"; ...
分类:其他好文   时间:2019-01-11 16:04:25    阅读次数:182
Software Architecture
Software Architecture Architecture serves as a blueprint for a system. It provides an abstraction to manage the system complexity and establish a comm ...
分类:其他好文   时间:2019-01-10 20:27:39    阅读次数:122
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!