bash不分区字符串和数值,如需计算数值可用$((.....)),但得到的结果不是数值. 函数内接受不了外面的变量传值. 正则表达式在匹配时是偷懒和正确匹配的和资源开销的种权衡. $# 脚本的参数个数 $* 以个单字符串显示所有向脚本传递的参数。与位置变量不同,此选项参数可超过9个 $$ 脚本运行的当前进程ID号 $! 后台运行的最后个进程的进程ID号 $@ 与$*相同,但
推荐 原创 2013-03-06 23:12:08
1951阅读
4点赞
5评论
三门问题import random num_change_win = 0 num_change_lose = 0 num_stay_win = 0 num_stay_lose = 0 def game(): global num_change_win, num_change_lose, num_stay_win, num_stay_lose doors = ['羊', '羊',
原创 精选 5月前
137阅读
枚举的基本应用:   举例:定义个Weekday的枚举   package cn.itcast.day1; public class EnumTest {  /**   * @param args   */  public static void main(String[] args) { &nbsp
原创 2011-04-26 11:44:06
774阅读
        # dig 最基本的用法   dig @server sina.com.cn.   # 用 dig 查看 zone 数据传输   dig @server zx.xmgd.com. AXFR   # 用 dig 查看 zone 数据的增量传输   dig @server zx.xmgd
原创 2012-02-18 13:38:48
1376阅读
 this指向对象,不是指向window <html>  <head>     <title>this指向对象,不是指向window</title>  </head>  <body>  
原创 2012-10-30 22:08:38
608阅读
1点赞
虚析构 #include<iostream> class Base { public: Base() { std::cout << "base 构造" << std::endl; } virtual~Base() { std::cout << "base 析构" << std::endl; } }; ...
转载 2021-07-24 14:54:00
113阅读
2点赞
4评论
以下是整理的一些正则表达式用于匹配相关特殊字符/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/ 谁能帮我具体解释下这个正则表达式的含义呢 /^(13[0-9]|15[0-9]|18[0-9]|14[0-9])\d{8}$/ 还有这个也帮忙解释下,?? ^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA
原创 3月前
25阅读
个 https://datascienceplus.com/building-a-simple-sales-revenue-dashboar...
原创 2022-03-18 11:30:01
922阅读
Hi,推荐文件给你 "谓词的用法PredicateABC.zip" http://vdisk.weibo.com/s/GbacFHi,推荐文件给你 "数据压缩与解压.zip" http://vdisk.weibo.com/s/GbabpHi,推荐文件给你 "读取制作二维码.zip" http://vdisk.weibo.com/s/Gba
原创 2013-06-17 15:16:08
1343阅读
1)<bean id="replayParallelConsumerTaskExecutor"  class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor"> <property name="corePoolSize" value="${frcst.replay.parallel.
原创 2016-08-08 14:40:45
750阅读
Created by Wang, Jerry on Oct 23, 2016stack=4, locals=1, args_size=1Values in bytecode are stored in local variable slots and on the operand stack. Each can have up to 2^16 - 1 slots, but for effi...
原创 2021-07-15 15:24:46
151阅读
Created Wang, Jerry on Oct 23, 2016stack=4, locals=1, a
原创 2022-04-12 15:23:39
61阅读
public List<GiveMyDistributorBean> queryDistriWithNoGoods(Long parentId, List<Long> goodIds, int skip, int max) {Map<String, Object> param = new HashMap<String, Object>();param
转载 精选 2016-03-04 09:26:07
792阅读
mqtt+esp8266+onenet:温湿度,lcd控制
转载 2021-04-27 13:39:00
80阅读
2评论
#include<set>#include<iterator>#include<iostream>#include <algorithm>using namespace std;int main(){ set<int> eg1; eg1.insert(1); eg1.insert(100); eg1
转载 2010-10-06 15:43:00
103阅读
2评论
   JAVA操作EXCEL有两种办法,个用POI,个用JXI,好象听说JXI对中文
原创 2022-12-06 10:17:20
120阅读
例1package volatileTest;public class VolatileTest01 { volatile int i; // synchronized if commented out, sum will not equal to 1000 // synchronized 注释了synchronized
原创 2021-07-13 17:02:06
51阅读
例1package volatileTest;public class VolatileTest01 { volatile
原创 2022-04-14 14:28:04
38阅读
Visual VM的OQL语言是对HeapDump进行查询,类似于SQL的查询语言,它的基本语法如下: sele
原创 2023-07-12 20:19:13
600阅读
定制探测包Nmap提供–scanflags选项,用户可以对需要发送的TCP探测包的标志位进行完全的控制。可以使用数字或符号指定TCP标志位:URG, ACK, PSH,RST, SYN,and FIN。例如,nmap -sX -T4 –scanflags URGACKPSHRSTSYNFINtargetip此命令设置全部的TCP标志位为1,可以用于某些特殊场
转载 2017-05-01 19:18:42
2754阅读
  • 1
  • 2
  • 3
  • 4
  • 5