码迷,mamicode.com
首页 > 2020年11月21日 > 全部分享
Oracle静默安装模板
oracle安装环境配置前提下 1 在安装文件/database/response/*有三个配置文件模板 [oracle@oracledb response]$ ll 总用量 100 -rwxrwxr-x. 1 oracle oinstall 44954 12月 4 11:46 dbca.rsp - ...
分类:数据库   时间:2020-11-21 12:43:54    阅读次数:24
H5性能分析及前端性能监控:window.performance
window.performance 是W3C性能小组引入的新的API,目前IE9以上的浏览器都支持。一个performance对象的完整结构如下图所示: memory字段代表JavaScript对内存的占用。 navigation字段统计的是一些网页导航相关的数据: redirectCount:重 ...
分类:Windows程序   时间:2020-11-21 12:43:34    阅读次数:34
ATM管理系统(极简版)
#一、说明 **1.**该系统只具备面向用户的基本功能(如开户、销户、存款、取款、转账、余额查询功能); **2.**该系统用C语言实现。 #二、ATM系统模块化代码 头文件& 全局变量 #include <stdio.h> #include <stdlib.h> #include <string. ...
分类:其他好文   时间:2020-11-21 12:43:16    阅读次数:45
SpringBoot的web部署, SpringBoot开发非Web程序
目录: 1、SpringBoot的web项目部署为war2、SpringBoot的web项目部署为jar3、SpringBoot开发非Web程序 3.1、方式一:利用 main()方法 3.2、方式二:通过springboot启动加载类 CommandLineRunner#run() 1、Sprin ...
分类:编程语言   时间:2020-11-21 12:42:59    阅读次数:27
RabbitMQ的个人爬坑(一)
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.s ...
分类:其他好文   时间:2020-11-21 12:42:43    阅读次数:29
系统自带的日志管理工具-rsyslogd
一.日志管理简介 1.什么是日志 系统日志是记录系统中硬件、软件和系统问题的信息,同时还可以监视系统中发生的事件。用户可以通过它来检查错误发生的原因,或者寻找受到攻击时攻击者留下的痕迹。系统日志包括系统日志、应用程序日志和安全日志。 2.日志服务 在CentOS6.x中日志服务已经由rsyslogd ...
分类:其他好文   时间:2020-11-21 12:42:29    阅读次数:29
实验三
任务一 #include<stdio.h> #include<math.h> int main(){ float a, b, c, x1, x2; float delta, real, imag; printf("Enter a, b, c: "); while(scanf("%f%f%f", &a ...
分类:其他好文   时间:2020-11-21 12:42:08    阅读次数:28
Codeforces Round #684 (Div. 2)【ABC1C2】
比赛链接:https://codeforces.com/contest/1440 A. Buy the String 题解 枚举字符串中 $0$ 或 $1$ 的个数即可。 代码 #include <bits/stdc++.h> using namespace std; int main() { io ...
分类:其他好文   时间:2020-11-21 12:41:54    阅读次数:32
MySQL与Oracle常用函数
日期转字符串 // Oracle to_char(sysdate,'yyyy-MM-dd HH24:mm:ss') // MySQL select date_format(now(),'%Y-%m-%d %H:%i:%s') 数字转字符串 //Oracle to_char(1) //MySQL se ...
分类:数据库   时间:2020-11-21 12:41:30    阅读次数:23
节点操作
父节点操作: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta htt ...
分类:其他好文   时间:2020-11-21 12:41:01    阅读次数:28
继承中的this
父类: public class Parent { //看这里的this指的是什么 public Parent() { this.say(); } protected void say() { System.out.println("father"); } } 子类: public class Su ...
分类:其他好文   时间:2020-11-21 12:40:44    阅读次数:24
springboot之Mongo
MongoDB是基于分布式文件存储的数据库。 MongoDB 是一个高性能,开源,无模式的文档型数据库,是当前 NoSql 数据库中比较热门的一种。 他支持的数据结构非常松散,是类似 json 的 bjson 格式,因此可以存储比较复杂的数据类型。 MongoDB 最大的特点是他支持的查询语言非常强 ...
分类:编程语言   时间:2020-11-21 12:40:28    阅读次数:25
C# 中大端序与小端序
C# 中大端序与小端序 static void Main(string[] args) { uint value = 0x12345678; Console.WriteLine("原始字节序:0x12345678"); byte[] bigLittleEndian = BitConverter.Ge ...
分类:Windows程序   时间:2020-11-21 12:40:13    阅读次数:25
Linux配置NTP时间同步
Linux配置NTP时间同步 一、ntp和ntpdate区别 两个服务都是centos自带的(centos7中不自带ntp)。ntp的安装包名是ntp;ntpdate的安装包是ntpdate。他们并非由一个安装包提供。 ntp守护进程为ntpd,配置文件是/etc/ntp.conf ntpdate用 ...
分类:系统相关   时间:2020-11-21 12:39:54    阅读次数:16
scanf和printf的格式
scanf()函数是通用终端格式bai化输入函数,du它从标准输入设备(键盘)读取输zhi入的信息。可以读入任dao何固有类型的数据并自动把数值变换成适当的机内格式。其调用格式为:scanf(“<格式化字符串>”,<地址表>);scanf()函数返回成功赋值的数据项数,出错时则返回EOF; 其控制串 ...
分类:其他好文   时间:2020-11-21 12:39:38    阅读次数:12
C++内联函数
@(C++内联函数) #include <iostream> using namespace std; inline int Max(int a, int b) { if (a > b) return a; else return b; } int main() { cout << Max(23, ...
分类:编程语言   时间:2020-11-21 12:39:21    阅读次数:17
java程序性能分析之thread dump和heap dump
java程序性能分析之thread dump和heap dump 博客分类: java基础 javajmapjstack 一.dump基本概念 在故障定位(尤其是out of memory)和性能分析的时候,经常会用到一些文件来帮助我们排除代码问题。这些文件记录了JVM运行期间的内存占用、线程执行等 ...
分类:编程语言   时间:2020-11-21 12:39:10    阅读次数:19
204条   上一页 1 2 3 4 5 6 ... 12 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!