首页 > 2020年02月24日 > 全部分享
VFP的数据策略:高级篇
VFP的数据策略:高级篇 作者:Doug Hennig 翻译:老瓷 引语 在“VFP中的数据策略:基础篇”一文中,我们研究了VFP应用程序中访问非VFP数据(如SQL Server)的不同机制:远程视图、SQL Passthrough、ADO、XML和VFP 8中添加的CursorAdapter类。 ...
分类:其他   时间:2020-02-24 20:45:09    收藏:0  评论:0  赞:0  阅读:68
Log4cpp 编译+引用
一 Log4cpp介绍 Log4cpp 类似的支持库还包括Java(log4j),C++(log4cpp、log4cplus),C(log4c),python(log4p)等。 log4c... 是基于log4j的一系列的c++移植版本,使用了log4j的模式结构,目前主要有以下几个版本: 1. l ...
分类:其他   时间:2020-02-24 20:44:06    收藏:0  评论:0  赞:0  阅读:90
Sql注入之注入点类型和是否存在注入判断
SQL注入之判断注入类型注入类型分为数字型和字符型和搜索型例如数字型语句:select * from table where id =3,则字符型如下:select * from table where name=’admin’。可见在测试时需要添加引号去闭合参数时才能使页面返回正确的是字符型注入, ...
分类:数据库技术   时间:2020-02-24 20:41:41    收藏:0  评论:0  赞:0  阅读:419
c++ keyword实例
```cpp #include #include #include #include //#include //#include //#include //#include //#include //#include using namespace std; /* keywords of c++ a... ...
分类:编程语言   时间:2020-02-24 20:40:19    收藏:0  评论:0  赞:0  阅读:80
面经 大数据开发实习 深信服
面试时间:2019年6月 深信服的效率是很快的,前一天晚上5点钟通知笔试,在7点就要进行笔试,9点笔试完11点钟通知第二天中午11点面试 所以我做完也没有来得及有所准备,就得去面试了 面经如下: 1.namenode和secondarynamenode的工作机制 2.谈谈对flume的理解, flu ...
分类:其他   时间:2020-02-24 20:39:36    收藏:0  评论:0  赞:0  阅读:85
c++虚函数几种实现方法
```cpp#include #include #include #include struct Base { virtual void f() { std::cout init(); return ret;}void testVirtual() { //Base b; //Derived d; /... ...
分类:编程语言   时间:2020-02-24 20:39:13    收藏:0  评论:0  赞:0  阅读:81
Gibbs采样
import math import random import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D from scipy.stats import multivariate_normal sampleso ...
分类:其他   时间:2020-02-24 20:38:27    收藏:0  评论:0  赞:0  阅读:67
304. 二维区域和检索 - 矩阵不可变(动态规划)
给定一个二维矩阵,计算其子矩形范围内元素的总和,该子矩阵的左上角为 (row1, col1) ,右下角为 (row2, col2)。 来自leetcode 本题既是一个熟悉class的题目,也是一道简单的动态规划题,子矩阵面积 = 两块面积 - 重复面积 + 右下角面积 收获: 都是一些值得学习的小 ...
分类:其他   时间:2020-02-24 20:38:11    收藏:0  评论:0  赞:0  阅读:76
c++ stl框架基本知识
```cpp#include #include #include #include #include #include #include #include #include #include #include #include //STL 是一个框架, 将数据结构和算法进一步的抽象//容器, 迭代器... ...
分类:编程语言   时间:2020-02-24 20:37:55    收藏:0  评论:0  赞:0  阅读:65
在训练过程中loss出现NaN的原因以及可以采取的方法
1、梯度爆炸 原因:在学习过程中,梯度变得非常大,使得学习的过程偏离了正常的轨迹。 症状:观察输出日志(runtime log)中每次迭代的loss值,你会发现loss随着迭代有明显的增长,最后因为loss值太大以致于不能用浮点数去表示,所以变成了NaN。 可采取的方法:(1)降低学习率,降低至少一 ...
分类:其他   时间:2020-02-24 20:37:36    收藏:0  评论:0  赞:0  阅读:101
Spring Boot 2.x 自定义Endpoint
概述 在使用Spring Boot的时候我们经常使用actuator,健康检查,bus中使用/refresh等。这里记录如何使用注解的方式自定义Endpoint。可用于满足一些服务状态监控,或者优雅停机等。 准备 Spring Boot项目,pom中加入: 编写自定义Endpoint 1.配置 2. ...
分类:编程语言   时间:2020-02-24 20:37:16    收藏:0  评论:0  赞:0  阅读:101
爬虫案例-爬运维工单
源代码: # coding=utf-8 import requests from lxml import etree class ChaxunSpdier: def __init__(self): self.start_url = 'http://111.40.232.237:9000/eoms35 ...
分类:其他   时间:2020-02-24 20:36:57    收藏:0  评论:0  赞:0  阅读:92
Java:Java单例中的懒汉和饿汉模式
1.懒汉模式 懒汉模式:在类加载的时候不被初始化,懒汉式是延时加载,他是在需要的时候才创建对象。 public class JdbcUtil { //定义私有的引用 private static JdbcUtil jdbcUtil; /** * 不能让外部直接创建对象 */ private Jdbc ...
分类:编程语言   时间:2020-02-24 20:36:36    收藏:0  评论:0  赞:0  阅读:60
常成员函数
常成员函数不能改变数据成员的值,例如定义坐标类Coordinate,成员函数changeX():void Coordinate::changeX(){ x = 10;}虽然changeX()没有参数,但是它隐含一个参数——this指针:void Coordinate::changeX(Coordin... ...
分类:其他   时间:2020-02-24 20:36:15    收藏:0  评论:0  赞:0  阅读:63
c++智能指针-shared_ptr的尴尬-诞生weak_ptr
```cpp #include #include #include //auto ptr //shared_ptr //unique_ptr //weak_ptr class Parent; //采用前置声明 using ParentPtr = std::shared_ptr; typedef st... ...
分类:编程语言   时间:2020-02-24 20:35:58    收藏:0  评论:0  赞:0  阅读:65
c++ smart_ptr 总结
```cpp #include #include #include //智能指针总结: /* */ void sharedPtrNotice(); class Parent; typedef std::shared_ptr ParentPtr; typedef std::weak_ptr WeakP... ...
分类:编程语言   时间:2020-02-24 20:35:18    收藏:0  评论:0  赞:0  阅读:78
Spring源码阅读笔记02:IOC基本概念
本文主要介绍了IoC(控制反转)和DI(依赖注入)的概念,并探索验证了IoC所带给我们的部分"附加值"。在此基础上介绍了常见IOC容器Spring的基本职责,从而对IoC即IOC容器有了最基本认识。 ...
分类:编程语言   时间:2020-02-24 20:34:36    收藏:0  评论:0  赞:0  阅读:74
2019-2020-2 20175234 《网络对抗》 Exp0 Kali安装
2019 2020 2 20175234 《网络对抗》 Exp0 Kali安装 [toc] 一、实验步骤 安装 VMware Workstation Pro "官网" 下载,然后安装 在网上找相应版本的永久激活密钥,就可正常使用 安装 Kali Kali "官网" 有现成的虚拟机镜像,可以选择匹配的 ...
分类:其他   时间:2020-02-24 20:33:34    收藏:0  评论:0  赞:0  阅读:57
PhpStorm+Xdebug配置单步调试PHP
(一)php安装xdebug扩展,PHPStorm+XDebug单步调试 (二)PHPStorm配置XDebug (三)PHPStorm使用XDebug调试 (四)PhpStorm+Xdebug配置单步调试PHP 一、原理: Xdebug是一款php调试插件,支持在Windows或Linux上进行远 ...
分类:Web开发   时间:2020-02-24 20:31:54    收藏:0  评论:0  赞:0  阅读:86
数据库的基本怎删改查
...
分类:数据库技术   时间:2020-02-24 20:31:06    收藏:0  评论:0  赞:0  阅读:58
1118条   上一页 1 ... 8 9 10 11 12 ... 56 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!