码迷,mamicode.com
首页 >  
搜索关键字:lin    ( 27758个结果
Mark down学习
一.Mark down学习 1.标题名 ctrl+1 一级标题 ctrl+2 二级标题 …………………… …………………… 一直能到 六级标题 2.字体 加粗ctrl+B 加斜ctrl+l 删除线 Alt +shift+5 引用 > 加 空格 分割线 三个减号 截图 可以 从本地找 也可以在网页上 ...
分类:其他好文   时间:2021-06-02 15:08:22    阅读次数:0
export与export default区别
export命令对外接口是有名称的且import命令从模块导入的变量名与被导入模块对外接口的名称相同,而export default命令对外输出的变量名可以是任意的,并且这时import命令后面,不使用大括号。(解构)export default命令用于指定模块的默认输出。显然,一个模块只能有一个默 ...
分类:其他好文   时间:2021-06-02 15:05:44    阅读次数:0
JS-jQuery
jQuery 获取jQuery 公式:$(selector).action() jQuery(选择器).事件() <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title><!-- 导入在线cdn ...
分类:Web程序   时间:2021-06-02 14:55:16    阅读次数:0
How Long Does It Take
How Long Does It Take Given the relations of all the activities of a project, you are supposed to find the earliest completion time of the project. In ...
分类:其他好文   时间:2021-06-02 14:53:07    阅读次数:0
php的rabbitmq扩展(未测试)
下载,解压rabbitmq-c源码 wget -c https://github.com/alanxz/rabbitmq-c/archive/v0.9.0.tar.gz tar -zxvf v0.9.0.tar.gz 配置,编译,安装 cd rabbitmq-c-0.9.0/ mkdir build ...
分类:Web程序   时间:2021-06-02 14:50:02    阅读次数:0
Oracle datapump相关sql语句汇总
--create directory create directory dump_dir as '/splex/dump'; grant read,write on directory dump_dir to public; --export full database schema expdp u ...
分类:数据库   时间:2021-06-02 14:24:07    阅读次数:0
几种软件在论文中的引用样式
R的引用(在R中输入citation()) R Core Team (2020). R: A language and environment for statistical computing. R Foundation for Statistical Computing, Vienna, Aus ...
分类:其他好文   时间:2021-06-02 14:13:11    阅读次数:0
WPF 2D图形 Shape入门(一)--Shape
本文是篇WPF Shape的入门文章 Shape 首先看看shape的继承链关系: 一个Shape具有哪些重要属性: 属性 说明 DefiningGeometry 默认的几何形状 RenderedGeometry 最终渲染后呈现的几何形状 Stroke 绘制的形状轮廓加上画刷(颜色) StrokeT ...
分类:Windows程序   时间:2021-06-02 13:54:52    阅读次数:0
实验五
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:其他好文   时间:2021-06-02 13:43:42    阅读次数:0
实验五 数组和指针
实验任务一 #include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", ...
分类:编程语言   时间:2021-06-02 13:40:25    阅读次数:0
27758条   上一页 1 ... 12 13 14 15 16 ... 2776 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!