#READ

Cannot assign to read only property 'exports' of object '#<Object>' ,文件名大小写问题!!!

有些坑不知道怎么就掉进去,可能一辈子都爬不起来!!!一、错误描述昨天还好好的,今天早上来从git获取了一下别人提交的代码就出错了!而提交代码的人运行一点错误都没有!!!cya@KQ-101MINGW64/e/Source/Repos/ProjectManagement/WebUI(master)  ...
代码星球 ·2020-04-10

使用 document.onreadystatechange()来判断页面加载完

document.onreadystatechange=subSomething;//当页面加载状态改变的时候执行这个方法.functionsubSomething() {  if(document.readyState=="complete"){//当页面加载状态为完全结束时进入&nbs...

深入源码探究ThreadLocal本地线程变量

问题引入:在多线程环境下,如何保证自己的变量不被其他线程篡改?     Spring如何处理Bean在多线程下的线程安全问题?先看一个线程不安全的例子:根据不考虑多线程的代码语义可知,我们期望静态变量经每个线程修改后变成该线程的编号并打印。1publicclassThreadLocalDemo{2privatestat...

实现多线程的三种方法:继承Thread类,实现Runnable接口和实现Callable接口

实现多线程的三种方法:1,继承Thread,重写run()方法,调用start()方法启动线程;2,实现Runnable接口,实现run()方法,用newThread(Runnabletarget).start()方法启动相应线程;3,实现Callable接口,使用FutureTask包装器,实现call()方法,而且...

多线程的创建方式---继承Thread和实现Runnable

继承Thread类创建多线程1packagecn.ftf.thread;2/**3*多线程实现方式一继承Thread实现多线程,继承Thread,重写run方法4*@author房廷飞5*6*/7publicclassStartThreadextendsThread{//对象继承Thread8publicstaticv...

C函数之readlink

函数原型;#include<unistd.h>ssize_treadlink(constchar*path,char*buf,size_tbufsiz);  函数说明:readlink()会将参数path的符号链接内容存储到参数buf所指的内存空间,返回的内容不是以00作字符串结尾,但会...
代码星球 ·2020-04-09

opendir,readdir,closedir

 结构体dirent:structdirent{ino_td_ino;//inodenumberoff_td_off;//offsettothenextdiretunsignedshortd_reclen;//lengthofthisrecordunsignedshortd_type;//typeoffile...
代码星球 ·2020-04-09

Thread(简单使用)

/***thread.c***/#include<stdio.h>#include<stdlib.h>#include<pthread.h>voidprint_message_function(void*ptr);intmain(){inttmp1,tmp2;void*retval;...
代码星球 ·2020-04-08

1082. Read Number in Chinese (25)

Givenanintegerwithnomorethan9digits,youaresupposedtoreaditinthetraditionalChineseway.Output"Fu"firstifitisnegative.Forexample,-123456789isreadas"FuyiYierQiansan...

jquery $(document).ready() 与js原生的window.onload的区别总结

Jquery中$(document).ready()的作用类似于传统JavaScript中的window.onload方法,不过与window.onload方法还是有区别的。1.执行时间         window.onload...

react+ant design Breadcrumb面包屑组件

importReactfrom'react';import{Link}from'react-router-dom';import{Breadcrumb}from'antd';//具体导航的名称constbreadcrumbNameMap={'/user':'用户管理','/user/user_info':'用户信息',...

小程序生命周期(onLaunch、onShow、onHide、onReady、onLoad、onUnloa)

(1)onlaunch:当小程序初始化完成时,会触发onLaunch(全局只触发一次)(app.js);(2)onLoad:页面加载小程序注册完成后,加载页面,触发onLoad方法。一个页面只会调用一次,可以在onLoad中获取打开当前页面所调用的query参数(页面js)。(3)onShow:页面显示页面载入后触发o...

Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>'

UncaughtTypeError:Cannotassigntoreadonlyproperty'exports'ofobject'#<Object>'点开错误的文件,标注错误的地方是这样的一段代码: 就是module.exports;百度查不到,google一查果然有。原因是:Thecodeab...

聊天程序——基于Socket、Thread (二)

聊天程序简述1、目的:主要是为了阐述Socket,以及应用多线程,本文侧重Socket相关网路编程的阐述。如果您对多线程不了解,大家可以看下我的上一篇博文浅解多线程。2、功能:此聊天程序功能实现了服务端跟多个客户端之间的聊天,可以群发消息,选择ip发消息,客户端向服务端发送文件。(例子为WinForm应用程序)Sock...

threading.local在flask中的用法

threading.local的作用:多个线程修改同一个数据,复制多份变量给每个线程用,为每个线程开辟一块空间进行数据的存储,而每块空间内的数据也不会错乱。#不用localfromthreadingimportThreadimporttimelqz=-1deftask(arg):globallqzlqz=arg#tim...
首页上一页...8889909192...下一页尾页