上一页 1 ··· 74 75 76 77 78 79 80 81 82 ··· 408 下一页
摘要: vmware虚拟机上linux操作系统怎样进行tty1~tty6切换?现象:Linux的终端机(文字)界面与图形界面间的切换热键为:进入终端机也就是字符界面(tty1-tty6):[Ctrl] + [Alt] + [F1] - [F6]进入图形界面(tty7):[Ctrl] + [Alt] + [F... 阅读全文
posted @ 2016-01-18 16:48 blfshiye 阅读(887) 评论(0) 推荐(0) 编辑
摘要: 前言:昨天把传说中的BeautifulSoup4装上了,还没有装好的童鞋,请看本人的上一篇博客:Python3 Win7安装 BeautifulSoup,依照里面简单的步骤就能够把BeautifulSoup装上啦。非常easy的,表害怕装好BeautifulSoup4之后,就让我们来好好享受这碗Be... 阅读全文
posted @ 2016-01-18 15:34 blfshiye 阅读(358) 评论(0) 推荐(0) 编辑
摘要: import java.io.File;import java.util.List;import org.dom4j.Document;import org.dom4j.DocumentException;import org.dom4j.Element;import org.dom4j.io.SA... 阅读全文
posted @ 2016-01-18 14:34 blfshiye 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 题目地址:http://codeforces.com/contest/456/problem/C脑残了。。DP仅仅DP到了n。。应该DP到10w+的。。代码例如以下:#include #include #include #include #include #include #include #inc... 阅读全文
posted @ 2016-01-18 13:18 blfshiye 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 近期在项目中用到了angular,之前从未用到过此js lib库,因为项目也比較着急,学习的寥寥草草。到眼下为止也仅仅是学会皮毛而已,现将自己学习的知识总结例如以下:备注1: 版本:1.2.2备注2: 本文将angular结合bootstrap做前端页面,逻辑处理。当中用到了ng的route,rep... 阅读全文
posted @ 2016-01-18 10:01 blfshiye 阅读(497) 评论(0) 推荐(0) 编辑
摘要: apache kafka中国社区QQ群:162272557Apache kafka性能优化架构分析应用程序优化:数据压缩watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvbGl6aGl0YW8=/font/5a6L5L2T/fontsize/400/fill/... 阅读全文
posted @ 2016-01-18 08:57 blfshiye 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1.提供相应的构造方法//构造器注入public class Bean6 { private String name; private Integer age; // 服务于构造器注入使用 public Bean6(String name, Integer age) { super(); thi... 阅读全文
posted @ 2016-01-17 20:50 blfshiye 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 在開始ACM的道路上,非常多时候会碰到非常大的数据范围,并且要用到数组来进行存储;可能会碰到下面的问题:#include int main(){ int n, a[10000005]; //局部 while(~scanf("%d", &n)) { for(int i=0... 阅读全文
posted @ 2016-01-17 19:44 blfshiye 阅读(1299) 评论(0) 推荐(0) 编辑
摘要: 将陆续上传本人写的新书《自己动手写处理器》(尚未出版)。今天是第四篇。我尽量每周四篇1.4 MIPS32指令集架构简单介绍 本书设计的处理器遵循MIPS32 Release 1架构,所以本节介绍的MIPS32指令集架构指的就是MIPS32 Release 1。1.4.1 数据类型 指令的主要任务就... 阅读全文
posted @ 2016-01-17 19:37 blfshiye 阅读(5087) 评论(0) 推荐(2) 编辑
摘要: 引用变量在创建的时候就必须初始化。无法创建一个未被初始化的引用。#include using namespace std;int main(){ int x=10; int y=20; int &r1;}编译结果:假设引用未被初始化。编译将报错。改动引用:引用总是指向初始化的那个变... 阅读全文
posted @ 2016-01-17 19:05 blfshiye 阅读(217) 评论(0) 推荐(0) 编辑
上一页 1 ··· 74 75 76 77 78 79 80 81 82 ··· 408 下一页