Hessian源码分析-Client端

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Zen99T/article/details/89048108 1 HessianProxyFactory 2 HessianProxy 参考 Hessian源码分析–HessianProxyFactory Hessian源码分析–HessianProxy
分类: 编程语言 发布时间: 04-05 22:20 阅读次数: 0

Hessian源码分析-Server端

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Zen99T/article/details/89048121 1 HessianServlet 2 HessianSkeleton 参考 Hessian源码分析–HessianServlet Hessian源码分析–HessianSkeleton
分类: 编程语言 发布时间: 04-05 22:20 阅读次数: 0

总结最近学习成果13-hello world

hello world -> olleh dlrow char* ReverseSWord(char* t){//给头地址返回尾地址-1 找到空格说明一个单词结束 找到\0说明到末尾 还需要注意的是 这里返回的是地址值 因此返回值类型应该是char* while (*t != ' '&& *t != '\0'){ t++; } return t - 1; } void ReverseWWord(char* t, char* w
分类: 编程语言 发布时间: 04-05 22:20 阅读次数: 0

Nginx配置文件(nginx.conf)结构

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Zen99T/article/details/89048150 1、主配置文件:nginx.conf 使用homebrew安装后,配置文件路径:/usr/local/etc/nginx/nginx.conf #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log not
分类: 编程语言 发布时间: 04-05 22:20 阅读次数: 0

LeetCode- word-search

Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from letters of sequentially adjacent cell, where "adjacent" cells are those horizontally or vertically neighboring. The same letter cell may not be used m
分类: 编程语言 发布时间: 04-05 22:20 阅读次数: 0

LeetCode-minimum-window-substring

Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n). For example, S ="ADOBECODEBANC" T ="ABC" Minimum window is"BANC". Note: If there is no such window in S that covers all char
分类: 编程语言 发布时间: 04-05 22:20 阅读次数: 0

LeetCode-sort-colors

Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the integers 0, 1, and 2 to represent the color red, white, and b
分类: 编程语言 发布时间: 04-05 22:20 阅读次数: 0

编译php7遇到/usr/bin/ld: cannot find -liconv问题的解决方法

编译php7遇到/usr/bin/ld: cannot find -liconv问题的解决方法:ln -s /usr/local/libiconv-1.15/lib/libiconv.so.2.6.0 /usr/lib/libiconv.so
分类: 企业开发 发布时间: 04-05 22:20 阅读次数: 0

WPS Office 2019 发布Linux 个人版

本次发布包括 X86、X64 平台的 rpm 及 deb 格式安装包。支持主流 Linux 操作系统,包括 Ubuntu、Fedora、Centos、Mint、Debian 等,同时兼容国产操作系统,如深度操作系统、UKylin、中标麒麟、方德、银河麒麟、新支点、Magic 等。WPS 2019 亮点功能1、全新的新建页面,整合最近打开文档、本地模板、公文模板、在线模板等2、支持智能目录更新3、自
分类: 企业开发 发布时间: 04-05 22:20 阅读次数: 0

Html标签记录

1.<body></body>:存放要展示的页面内容。 2.<p></p>:存放段落。 3.<hx></hx>:body下的文章标题,h1,h2,h3,h4...默认字体一次变小。 4.<em></em>和<strong></strong>:两个标签都为强调标签,区别在于em强调的文本为斜体,strong强调的标签为黑体加粗,一般用strong。 5.<span></span>:没有语义,作用是可为标签内容单独设置样式(颜色,大小,边框等)。 6.<q></q>:表示文章中简短文本的引用,比如
分类: 其他 发布时间: 04-05 22:11 阅读次数: 0

201731062525第三次作业

一、作业地址及GIT地址   1、作业地址:https://edu.cnblogs.com/campus/xnsy/SoftwareEngineeringClass2/homework/2879   2、完成地址:https://www.cnblogs.com/jpy160/   3、GIT地址:https://github.com/chenyuhangbaba/WordCount    https://github.com/chenyuhangbaba/WordCount.git 二、开发过
分类: 其他 发布时间: 04-05 22:11 阅读次数: 0

SQLAlchemy表关系

一对一表关系 Module 需要先创建对应的 Module ,这里采用之前建立好的 User 和 UserDetails from sqlalchemy.orm import relationship .... class User(Base): ..... class UserDetails(Base): ...... userdetail = relationship('User',backref='details',uselist=False,ca
分类: 其他 发布时间: 04-05 22:11 阅读次数: 0

字符编码这个坑

先试试 wchar_t 打印到 Windows 控制台。locale你大爷的。然后用 bitset 把二进制位打印出来谢罪。 于是,Unicode 查询器?(笑) 1 #include <iostream> 2 #include <string> 3 #include <fstream> 4 #include <locale> 5 #include <bitset> 6 7 int main(int argc, char *argv[]) 8 { 9
分类: 其他 发布时间: 04-05 22:11 阅读次数: 0

软件工程2班第三次作业

作业地址:https://edu.cnblogs.com/campus/xnsy/SoftwareEngineeringClass2/homework/2879 GitHub地址:https://github.com/wuyang12wy/WordCount.git 结对伙伴博客地址:https://www.cnblogs.com/phzs/ 一 . PSP表格 PSP2.1 Personal Software Process Stages 预估耗时(分钟) 实际耗时(分钟) Planning
分类: 其他 发布时间: 04-05 22:11 阅读次数: 0

数据结构(长期)

C++实现双链表 实现代码 双向链表文件(DoubleLink.h) #ifndef DOUBLE_LINK_HXX #define DOUBLE_LINK_HXX #include <iostream> using namespace std; template<class T> struct DNode { public: T value; DNode *prev; DNode *next;
分类: 其他 发布时间: 04-05 22:11 阅读次数: 0

笔记: 有多个比较因素的比较过程

在比较过程中存在多个考量的因素的时候, 显然是有优先顺序的, 在书上看到了这样的代码, 觉得写得挺好的:
分类: 其他 发布时间: 04-05 22:11 阅读次数: 0

Windows 10 and 3D Manufacturing Format, A Desktop-App Sample

using Microsoft.Win32; using System; using System.Linq; using System.Numerics; using System.Threading; using Windows.Foundation; using Windows.Graphics.Printing3D; using Windows.Storage; using Windows.Storage.Streams; namespace Printing3D
分类: 其他 发布时间: 04-05 22:11 阅读次数: 0

win10安装tensorflow-gpu1.13.1+cuda10.0+cudnn7.3.1

一,本机配置 Win10 64bit NVIDIA GeForce GTX 960M Python3.7(Anaconda) 二,安装CUDA 亲测,TensorFlow-gpu1.13.1支持cuda10.0的版本,所以我们可直接选择cuda10.0的版本 Window10下载CUDA10 安装步骤为: 1)运行.exe可执行和层序。安装软件会先运行一个系统检查,如果没有软硬件不兼容的情况就能继续进行下一步。若有不兼容情况,系统检查则会报错,无法进行下一步。如果报错了,就最先考虑下是不是自己
分类: 其他 发布时间: 04-05 22:11 阅读次数: 0

Vector集合——单列集合的“祖宗”类

是实现可增长的对象数组;所以底层也是数组; 与collection集合不同的是,vector是同步的,意味着是单线程的,意味着效率低,速度慢, 所以在jdk1.2版本之后被ArrayList集合所取代了; 对,没有错。
分类: 其他 发布时间: 04-05 22:11 阅读次数: 0

廖雪峰Java6 IO编程-2input和output-5操作zip

1.ZipInputStream是一种FilterInputStream 可以直接读取zip的内容 InputStream->FilterInputStream->InflateInputStream->ZipInputStream->JarInputStream JarInputStream使用ZipInputStream派生出来的,可以直接读取jar文件的MANIFEST.MF文件 ZipInputStream的基本用法: try(ZipInputStream zip = new ZipI
分类: 其他 发布时间: 04-05 22:11 阅读次数: 0