package com.vfsd.core; public class Test1 { public static int[] a1= {3,8,2,5,1,9}; public static void main(String[] args) { print1(); for(int k=0;k<a1 ...
分类:
其他好文 时间:
2021-01-21 10:35:53
阅读次数:
0
正文 1 intel的赋值格式 mov dest source 2 intel汇编的参数寄存器传递 参数传递会使用六个寄存器 %rdi, %rsi, %rdx, %rcx, %r8, %r9, 返回值使用 %rax 3 test %rax %rax 用来潘顿 %rax是否为0,test指令本来是让后 ...
分类:
其他好文 时间:
2021-01-20 12:16:18
阅读次数:
0
口令过期 SQL> conn test/test ERROR: ORA-28002: 7 天之后口令将过期 Connected. SQL> 修改oracle用户密码永不过期 1、查看用户的proifle是哪个,一般是default: sql>SELECT username,PROFILE FROM ...
分类:
其他好文 时间:
2021-01-20 12:15:01
阅读次数:
0
编写Dockerfile # 使用哪个镜像为基础 FROM nginx # 安装apt-get后清理垃圾文件 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* # 复制文件 COPY index. ...
分类:
其他好文 时间:
2021-01-20 11:55:13
阅读次数:
0
DynamoDB supports two types of primary keys: Partition key: A simple primary key, composed of one attribute known as the partition key. Attributes in ...
分类:
其他好文 时间:
2021-01-19 12:30:09
阅读次数:
0
https://blog.csdn.net/maoxuexue/article/details/106114771?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-1.control&depth_1-utm_ ...
分类:
其他好文 时间:
2021-01-19 12:00:30
阅读次数:
0
1.包装类的种类 2. 转换图解 3.具体代码 public class JunitTest { //基本数据类型 > 包装类 :装箱 @Test public void test1() { //调用包装类的 构造器 int i =10; Integer int1 = new Integer(i); ...
分类:
其他好文 时间:
2021-01-19 11:59:54
阅读次数:
0
#Version=V1.1_20200706#!/bin/shexport LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/mnt/APP/Libraries/GeneralLibs/xdja/export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/mn ...
分类:
其他好文 时间:
2021-01-19 11:47:18
阅读次数:
0
Linux Clone函数 之前某一次有过一次面试,问了内核中是怎么创建命名空间的? 下面就来扒一扒clone的精髓,以及如何通过它创建命名空间。 注:本文的代码仅用于功能验证,不能用于生产。本文对clone的标志的描述顺序有变,主要考虑到连贯性。 使用clone创建进程和线程 从linux 2.3 ...
分类:
系统相关 时间:
2021-01-19 11:45:27
阅读次数:
0
package test;import java.sql.*;public class retrieve { public static void main(String[] args) { try { Class.forName("com.mysql.jdbc.Driver"); } catch ...
分类:
数据库 时间:
2021-01-18 11:27:02
阅读次数:
0