学无止境 第9页
记录学习的过程
标准I/O库的缓冲方式-天煜博客

标准I/O库的缓冲方式

标准I/O库提供缓冲的目的:尽可能减少使用read和 write调用的次数。它也对每个I/O流自动地进行缓冲管理,从而避免了应用程序需要考虑这一点所带来的麻烦。 遗憾的是,标准I/O库最令人迷惑的也是它...
haoxuan的头像-天煜博客haoxuan4年前
0577
Linux驱动面试题整理含答案-天煜博客

Linux驱动面试题整理含答案

传送门:https://blog.csdn.net/kai_zone/article/details/82021233
haoxuan的头像-天煜博客haoxuan4年前
0777
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(二)-天煜博客

PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(二)Creating the VM Shell File

Link to the main post Once you’ve pressed the enter key from the Part-1, you’ll start seeing the following on the command prompt: Starting the PeopleSoft Environment Setup Proces...
haoxuan的头像-天煜博客haoxuan2年前
0947
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(五)-天煜博客

PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(五)ElasticSearch

We’re almost there! HCM PI 34 bundles ElasticSearch and Kibana. On Linux, both these directories are available under /opt/oracle/psft/pt/ES/pt. Sasank’s posts provide a lot of...
haoxuan的头像-天煜博客haoxuan2年前
01207
什么是ORM思想?-天煜博客

什么是ORM思想?

主要目的:操作实体类相当于操作数据库表 两个映射:实体类和表、实体类中属性和表中字段的映射关系 不再关注:Sql语句 实现了ORM思想的框架:Mybatis、hibernate等。 ORM 对象关系映射(Object...
haoxuan的头像-天煜博客haoxuan4年前
01527
【错题&疑问】UNIX高级环境编程-天煜博客

【错题&疑问】UNIX高级环境编程

1.以下不属于socket的类型的是 (       )。 [A] 流式套接字                   [B] 数据报套接字 [C] 原始套接字                   [D] 网络套接字 ...
haoxuan的头像-天煜博客haoxuan4年前
0557
什么是AOP?面向切面编程(AOP)的理解-天煜博客

什么是AOP?面向切面编程(AOP)的理解

什么是AOP? AOP全称Aspect Oriented Programming意为面向切面编程,也叫做面向方法编程,是通过预编译方式和运行期动态代理的方式实现不修改源代码的情况下给程序动态统一添加功能的技术。 AOP...
haoxuan的头像-天煜博客haoxuan4年前
0877
记录一次Centos 7下安装MariaDB的步骤-天煜博客

记录一次Centos 7下安装MariaDB的步骤

最近想折腾一下我的vps练练技术,记录一下步骤,供以后参考。 本来想装Mysql来着,但是感觉安装麻烦点,而且官网版本有些眼花缭乱的,试试MySQL同父同源的MariaDB。 首先查询是否安装过,我因为...
haoxuan的头像-天煜博客haoxuan5年前
0536
C语言基础教程-天煜博客
C语言基础教程-天煜博客

C语言基础教程循环语句&算法习题

/** * File Name: practice.c * Author: Haoxuan * Mail: haovxuan@126.com * Created Time: 2020年12月16日 星期三 10时48分01秒 **/ #include <stdio.h> #include <math.h> /** *...
haoxuan的头像-天煜博客haoxuan5年前
0776