举例 ##状态 对象生命期的一个阶段,在该阶段中该对象要满足一些特定的条件,并可从事特定的活动 表示法: 三个特定的动作标号:entry,exit,do entry:入口动作,进入状态,立即执行 exit:出口动作,退出状态,立即执行 do:内部活动,占有有限时间,并可以中断的工作 ##转换 ##作 ...
分类:
其他好文 时间:
2020-06-01 14:17:26
阅读次数:
79
1.在NameNode的一个节点下执行以下命令 #!/bin/bash for i in 192.168.1.101 192.168.1.102 192.168.1.103 do ssh $i "source /etc/profile;source ~/.bash_profile;/home/abb ...
分类:
其他好文 时间:
2020-06-01 13:34:08
阅读次数:
62
Vue组件的使用: 全局组件注册语法: Vue.component(组件名称,{data:组件数据,template:组件的模板内容}) 定义了一个组件: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Do ...
分类:
其他好文 时间:
2020-05-31 17:57:08
阅读次数:
42
#include <stdio.h>int main(){ int i,a[100],number,mid,temp1,temp2; printf("How many numbers do you want to enter? \n"); scanf("%d",&number);//确定数组长度 p ...
分类:
编程语言 时间:
2020-05-31 11:02:52
阅读次数:
258
把以下代码保存成.bat批处理文件,放到需要批量重命名的文件内,运行即可。 @echo off&setlocal enabledelayedexpansion for /f "delims=" %%i in ('dir /s/b .') do ( set "foo=%%~nxi" set foo=! ...
分类:
其他好文 时间:
2020-05-30 18:24:33
阅读次数:
168
TCP客户端 W5500的TCP客户端百度到处都有,而且都是一个模子 简而言之:就是这么写,这么用 上菜 /** * @brief TCP客户端 * @param None * @retval None * @warning None * @example **/ void do_tcpc(void ...
分类:
其他好文 时间:
2020-05-30 12:29:50
阅读次数:
129
Win7下C盘无法创建文件解决办法: To fix it, just turn off the User Account Control (UAC). In Windows 8, do not turn off the UAC via control panel, it must go throug ...
#!/bin/bash # FILENAME:filelock # 默认重试次数 retries="10" # 默认操作 action="lock" # 用于锁文件的空命令 nullcmd="'which true'" # 设置选项 while getopts "lur:" opt; do case ...
分类:
其他好文 时间:
2020-05-29 23:01:51
阅读次数:
89
import pymysql #导入pymysql模块from scripts.handle_yaml import HandleYaml #系统配置模块,关于数据库的配置都放在mysql区域名里面do_yaml = HandleYaml()class hander_sql: def __init_ ...
分类:
数据库 时间:
2020-05-29 21:33:16
阅读次数:
94
//int类型的冒泡排序using System; namespace 冒泡排序 { class Program { static void Sort(int[] sortArray) { bool swapped = true; do { swapped = false; for (int i = ...
分类:
编程语言 时间:
2020-05-29 21:01:56
阅读次数:
85