<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>基于localStorage的Web版记事本</title> </head> <body> <section> <h3>Web版记事本</h3> <textar ...
分类:
Web程序 时间:
2020-07-26 19:50:29
阅读次数:
119
参见:MATLAB techtalk 中关于MPC的讲解视频: https://www.mathworks.com/videos/series/understanding-model-predictive-control.html 或者: Understanding Model Predictive ...
分类:
其他好文 时间:
2020-07-26 15:55:13
阅读次数:
291
python学习之路 你想要的都在这里了 (根据自己的学习进度后期不断更新哟!!!) 一、python基础 1.python基础--python基本知识、七大数据类型等 2.python基础--程序交互、格式化输出、流程控制、break、continue 3.python基础--小数据池,代码块的最 ...
分类:
编程语言 时间:
2020-07-26 15:35:50
阅读次数:
70
客户端通信是DLL 文件,看需求可以自己编译到exe上 下面是DLL调用过程 客户端代码 // DriveDll.cpp : Defines the entry point for the DLL application. // #include "stdafx.h" #include <windo ...
分类:
其他好文 时间:
2020-07-26 15:25:12
阅读次数:
107
单词换行的问题 在项目中有时候会遇到英文很长的句子,然后当div剩下的部分不足以放下一个单词的时候,单词就会换行显示,这样的话尾部就会空了很大的地方显得很不好看 解决方法 可以通过两个css属性来实现这个需求: word-wrap:break-word; word-break:break-all; ...
分类:
Web程序 时间:
2020-07-26 01:35:01
阅读次数:
80
php跳出循环 break continue return exit 的区别 1.break 跳出当前的for/switch 循环体 for($i =1; $i< 3; $i++){ for($j=1;$j<10;$j++){ if($j == 3){ break; } echo $j.PHP_EO ...
分类:
Web程序 时间:
2020-07-26 00:51:30
阅读次数:
89
方法一: int rowHandle = gridView.LocateByValue("CustomerID", 12345); if(rowHandle != DevExpress.XtraGrid.GridControl.InvalidRowHandle) gridView.FocusedRo ...
分类:
其他好文 时间:
2020-07-26 00:26:45
阅读次数:
82
1 #include <iostream> 2 #include <algorithm> 3 #include <cstring> 4 #include <vector> 5 using namespace std; 6 const int SIZE = 1e6; 7 int heap[SIZE], ...
分类:
编程语言 时间:
2020-07-25 23:58:20
阅读次数:
91
注意,default语句不是必须放在case语句的结尾处出现。 例子程序: int i=9; switch (i) { default: System.out.println("default"); case 0: System.out.println("zero"); break; case 1: ...
分类:
其他好文 时间:
2020-07-25 23:38:15
阅读次数:
136
break关键字 -break关键字可以用来退出switch或循环语句 -不能在if语句中使用break和continue,但不是说if语句里面不能写break关键字,break关键字一定要包含在switch或循环语句中。 正确的: for(var i=0 ; i<5 ; i++){ console ...
分类:
编程语言 时间:
2020-07-25 09:40:31
阅读次数:
59