<html> <body background="http://img1.imgtn.bdimg.com/it/u=821335874,2927998559&fm=27&gp=0.jpg"><h1 style="text-align:center">网站集中地</h1><p><a href="/ht ...
分类:
Web程序 时间:
2018-04-07 14:53:11
阅读次数:
260
好朋友们~欢迎大佬们申请友链~申请友链请在下方留言(/▽\=) 申请格式: 网址:http://www.cnblogs.com/yjlblog/ 说明:一个可爱的蓝孩子qwq 本站相关 好朋友们 "Angel_Kitty " ...
分类:
其他好文 时间:
2018-04-05 23:15:38
阅读次数:
162
修改MySQL端口为13306 vim /etc/my.cnf [mysqld]port=13306lower_case_table_names=1 datadir=/var/lib/mysqlsocket=/var/lib/mysql/mysql.sockuser=mysql# Disabling ...
分类:
数据库 时间:
2018-04-02 20:21:24
阅读次数:
210
<?php$links=mysql_connect("localhost","root","密码");//注意:root为mysql账户名称,密码需要修改为实际mysql密码,无密码则留空即可if($links){echo"linkdbok!!!";}else{echo"linkdbno!!!"
分类:
数据库 时间:
2018-03-29 19:19:29
阅读次数:
167
简介: 本文主要介绍Java8中的并发容器ConcurrentHashMap的工作原理,和其它文章不同的是,本文重点分析了不同线程的各类并发操作如get,put,remove之间是如何同步的,以及这些操作和扩容操作之间同步可能出现的各种情况。由于源代码的分析肯定会有所纰漏,希望大家积极指出错误。 欢... ...
分类:
编程语言 时间:
2018-03-25 22:17:56
阅读次数:
283
1、PubSub使用方式 1.1 react导入库 npm install pubsub-js --save 1.2 react 页面引入pubsubjs import PubSub from 'pubsub-js' 1.3 pubsubjs使用 发送消息:PubSub.publish(名称,参数) ...
分类:
其他好文 时间:
2018-03-22 21:26:27
阅读次数:
347
Reversing Linked List Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For example, give ...
分类:
其他好文 时间:
2018-03-22 00:28:24
阅读次数:
213
Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For example, given L being 1→2→3→4→5→6, ...
分类:
其他好文 时间:
2018-03-12 18:47:41
阅读次数:
159
Python 模块(Module),是一个 Python 文件,以 .py 结尾,包含了 Python 对象定义和Python语句。 模块让你能够有逻辑地组织你的 Python 代码段。 把相关的代码分配到一个模块里能让你的代码更好用,更易懂。 模块能定义函数,类和变量,模块里也能包含可执行的代码。 ...
分类:
编程语言 时间:
2018-03-11 19:18:27
阅读次数:
170