码迷,mamicode.com
首页 >  
搜索关键字:resume    ( 506个结果
更新数据
前面讲解了如何插入数据,数据插入之后,如果想变更,这就需要更新数据表中的数据。MySQL中使用UPDATE语句可以更新表中的数据,语法格式如下所示。 UPDATE 表名 SET 字段名1=值1 [,字段名2=值2,……] [WHERE条件表达式]; 以上语法格式中,“字段名”用于指定需要更新的字段名 ...
分类:其他好文   时间:2019-05-27 09:14:05    阅读次数:102
如何停止线程?
1.使用退出标志,使线程正常退出,也就是当run方法完成后线程终止。 当flag为false时,停止线程。 2.使用stop()强行终止线程(这个方法不推荐用,因为stop()和suspend(),resume一样,可能发生不可预料的结果,没有错误处理机制) 3.使用interrupt()中断线程, ...
分类:编程语言   时间:2019-05-24 19:02:05    阅读次数:144
C#开启线程的四种方式
1.异步委托开启线程 2.通过Thread类开启线程 3.通过线程池开启线程 4.通过任务Task开启线程 ...
分类:编程语言   时间:2019-05-16 17:50:12    阅读次数:137
基于335X平台Linux交换芯片驱动开发
基于335X平台Linux交换芯片驱动开发 一、软硬件平台资料 1、开发板:创龙AM3359核心板,网口采用RMII形式。 2、Kernel版本:4.4.12,采用FDT 3、交换芯片MARVELL的88E6321. 二、移植准备工作 1、熟悉88E6321的datasheet及Functional ...
分类:系统相关   时间:2019-05-08 09:44:20    阅读次数:296
PHP 之获取Windows下CPU、内存的使用率
getFilePath( 'cpu_usage.vbs', "On Error Resume Next Set objProc = GetObject(\"winmgmts:\\\\.\\root\cimv2:win32_processor='cpu0'\") WScript.Echo(objPro... ...
分类:Windows程序   时间:2019-05-04 14:51:20    阅读次数:214
L364 Should Your Resume Be One Page or Two?
Should Your Resume Be One Page or Two? Conventional wisdom suggests that you should keep it short: According to job hunting site The Ladders, recruite ...
分类:其他好文   时间:2019-04-29 09:34:45    阅读次数:138
Laravel API Tutorial: How to Build and Test a RESTful API
With the rise of mobile development and JavaScript frameworks, using a RESTful API is the best option to build a single interface between your data an ...
分类:Windows程序   时间:2019-04-27 00:20:05    阅读次数:249
vue cli 3.x 项目部署到 github pages
github pages 是 github 免费为用户提供的服务,写博客,或者部署一些纯静态项目。 最近将 vue cli 3.x 初始化项目部署到 github pages,踩了一些坑,记录如下。 "https://github.com/nusr/resume vue" 1. vue router ...
分类:其他好文   时间:2019-04-16 21:36:16    阅读次数:179
个人简介
码云链接:https://gitee.com/tangqingao/personal_profile.git <!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title>Resume</title> <style type="text/c ...
分类:其他好文   时间:2019-03-17 01:20:09    阅读次数:182
resume
源码链接(码云):https://gitee.com/tinqiao/level_17_software_engineering.git 截图效果: 源码: ...
分类:其他好文   时间:2019-03-14 13:48:31    阅读次数:149
506条   上一页 1 ... 7 8 9 10 11 ... 51 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!