码迷,mamicode.com
首页 >  
搜索关键字:which    ( 9148个结果
关于Bash命令的一些理解
bash中每个命令即对应一个文件, 可以根据which来查询所所使用命令文件所在的位置. 常用的ls,cp等命令都储存/usr/bin中, 可以通过which [命令] 来查看命令文件所在位置. (cd命令无文件, 通过bash实现)在使用ls查看文件的时候, 同样可以用/usr/bin/ls这样的 ...
分类:其他好文   时间:2019-12-29 10:56:00    阅读次数:63
环境变量
关于Linux环境变量 所谓环境变量, 就是位置, 就是索引位置. 首先需要理解, 当我们在bash中输入的每一个命令, 都有其对应的文件. 例如我们的常用的ls,cp等命令都储存/usr/bin中, 可以通过which [命令] 来查看命令文件所在位置. (cd命令无文件, 通过bash实现)在使 ...
分类:其他好文   时间:2019-12-29 10:52:53    阅读次数:89
[Javascript] Create Your First Iterator in JavaScript
Iterators are the foundation of generators. Much of the misunderstanding around generators comes from the lack of understanding iterators. An iterator ...
分类:编程语言   时间:2019-12-28 13:10:50    阅读次数:86
2019年自做407道 Java面试题 答案
基础与语法 JDK和JRE有什么区别? ==和equals的区别是什么? 基本类型和包装类对象使用 == 和 equals进行比较的结果? 什么是装箱?什么是拆箱?装箱和拆箱的执行过程?常见问题? hashCode()相同,equals()也一定为true吗? final在java中的作用 fina ...
分类:编程语言   时间:2019-12-27 20:03:44    阅读次数:100
network, IP address, subnetting
1. Several terminologies: Address: Subnet: Subnet mask: A 32-bit combination used to describe which portion of an adress refers to the subnet and whic ...
分类:Web程序   时间:2019-12-27 10:08:18    阅读次数:128
LeetCode 788. Rotated Digits
原题链接在这里:https://leetcode.com/problems/rotated-digits/ 题目: X is a good number if after rotating each digit individually by 180 degrees, we get a valid ...
分类:其他好文   时间:2019-12-27 09:49:53    阅读次数:54
Dart-Tour2-类
类Dart语法样式: https://www.dartlang.org/guides/language/effective-dart/style语法:https://www.dartlang.org/guides/language/language-tour概览重要概念关键词注释变量内置类型函数操作... ...
分类:其他好文   时间:2019-12-25 23:39:34    阅读次数:108
dart版本升级后flutter移动电商代码引起的错误
This class (or a class which this class inherits from) is marked as '@immutable', but one or more of 搜索到解决方法地址: https://www.cnblogs.com/110-913-1025/p ...
分类:移动开发   时间:2019-12-25 01:18:57    阅读次数:167
The "web.xml" is called web application deployment descriptor
3.3 Configure the Application Deployment Descriptor - "web.xml" A web user invokes a servlet, which is kept in the web server, by issuing a specific U ...
分类:移动开发   时间:2019-12-23 18:52:49    阅读次数:106
tomcat web的URL解析(web.xml)
1、一个tomcat可以配置多个host; 2、一个host可以包含多个应用:context; 3、一个应用可以包含多个servlet:servlet-path; 4、一个servlet可以包含多个request:request-path; Tomcat’s Architecture Tomcat’ ...
分类:Web程序   时间:2019-12-23 18:30:59    阅读次数:116
9148条   上一页 1 ... 52 53 54 55 56 ... 915 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!