<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[weixin_30907523的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/weixin_30907523</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; weixin_30907523]]></copyright><item><title><![CDATA[深度学习数学基础]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/102154797</link><guid>https://blog.csdn.net/weixin_30907523/article/details/102154797</guid><author>weixin_30907523</author><pubDate>Thu, 03 Oct 2019 11:47:00 +0800</pubDate><description><![CDATA[机器学习简介：
特征向量
目标函数
机器学习分类：
有监督学习：分类问题（如人脸识别、字符识别、语音识别）、回归问题
无监督学习：聚类问题、数据降维
强化学习：根据当前状态预测下一个状态，回报最大化，回报具有延迟性，如无人驾驶、下围棋
深度学习数学知识：微积分、线性代数、概率论、最优化方法
一元函数微积分：
一元函数的泰勒展开：多项式近似代替函数
一定是在某一点附近做...]]></description><category></category></item><item><title><![CDATA[Python私有函数和专有方法]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/101858812</link><guid>https://blog.csdn.net/weixin_30907523/article/details/101858812</guid><author>weixin_30907523</author><pubDate>Tue, 01 Oct 2019 13:44:00 +0800</pubDate><description><![CDATA[　　在任何语言中，都会规定某些对象(属性、方法、函数、类等)只能够在某个范围内访问，出了这个范围就不能访问了。这是“公”、“私”之分。此外，还会专门为某些特殊的东西指定一些特殊表示，比如类的名字就不能用class，def等，这就是保留字。除了保留字，python中还为类的名字做了某些特殊准备，就是“专有”的范畴。
私有函数
　　在某些时候，会看到有一种方法命名比较特别，是以“__”双...]]></description><category></category></item><item><title><![CDATA[实例方法、类方法和静态方法区别]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/101858811</link><guid>https://blog.csdn.net/weixin_30907523/article/details/101858811</guid><author>weixin_30907523</author><pubDate>Tue, 01 Oct 2019 12:44:00 +0800</pubDate><description><![CDATA[class A:
# 实例方法:
  def f1(self):
    return 1
# 类方法:
  @classmethod
  def f2(cls):
    return 2
# 静态方法
  @staticmethod
  def f3():
    return 3
 
a = A()
 
a.f1() # =&gt; 1
A...]]></description><category></category></item><item><title><![CDATA[040.[转] 对于程序框架的理解]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/102333816</link><guid>https://blog.csdn.net/weixin_30907523/article/details/102333816</guid><author>weixin_30907523</author><pubDate>Sun, 29 Sep 2019 22:13:00 +0800</pubDate><description><![CDATA[框架和类库等概念的出现都是源于人们对复用的渴望。“不要重复发明轮子”，成了软件界的一句经典名言。从最初的单个函数源代码的复用，到面向对象中类的复用（通常以类库的形式体现），再到基于组件编程中二进制组件（.NET中是以IL程序集形式存在的）的复用，人们复用软件的抽象层次越来越高。现在，框架复用是抽象层次的又一提升，框架的复用不仅仅是功能的复用，更是设计的复用。
1．1框架...]]></description><category></category></item><item><title><![CDATA[oracle中关于clob类型字段的查询效率问题]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/101576606</link><guid>https://blog.csdn.net/weixin_30907523/article/details/101576606</guid><author>weixin_30907523</author><pubDate>Fri, 27 Sep 2019 21:53:00 +0800</pubDate><description><![CDATA[今天，公司项目某个模块的导出报如下错误：

HTTP Status 500 – Internal Server Error
Type Exception Report

Message Handler dispatch failed; nested exception is java.lang.OutOfMemoryError: GC overhead limit exceed...]]></description><category></category></item><item><title><![CDATA[面向对象编程]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/102108259</link><guid>https://blog.csdn.net/weixin_30907523/article/details/102108259</guid><author>weixin_30907523</author><pubDate>Fri, 27 Sep 2019 10:51:00 +0800</pubDate><description><![CDATA[转：https://www.cnblogs.com/zhaof/p/5818905.html

1、面向对象介绍：
世界万物，皆可分类
世界万物，皆为对象
只要是对象，就肯定属于某种类
只要是对象，就肯定有属性
2、 面向对象的几个特性：
class类：
一个类即对一类拥有相同属性的对象的抽象，蓝图、原型。在这个类中定义了这些对象都具备的属性，共同的方法。
ob...]]></description><category></category></item><item><title><![CDATA[Python-集合]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/102003118</link><guid>https://blog.csdn.net/weixin_30907523/article/details/102003118</guid><author>weixin_30907523</author><pubDate>Thu, 26 Sep 2019 11:30:00 +0800</pubDate><description><![CDATA[集合是无序的，且唯一无重复的

#空集合
v=set()

#添加
v={1,2}
v.add('sky')
v.add('sky')
print(v)

#删除
v={1,2,'sky'}
v.discard('sky')
print(v)
#update 批量添加v={1,2,'sky'}v.update({11,22,33})print(v)

...]]></description><category></category></item><item><title><![CDATA[FScapture录屏后导致麦克风无声问题]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/101576600</link><guid>https://blog.csdn.net/weixin_30907523/article/details/101576600</guid><author>weixin_30907523</author><pubDate>Wed, 25 Sep 2019 21:24:00 +0800</pubDate><description><![CDATA[转载于:https://www.cnblogs.com/nietzsche2019/p/11587559.html]]></description><category></category></item><item><title><![CDATA[nvl(sum(字段),0) 的时候，能展示数据0，但是group by 下某个伪列的时候，查不到数据（转载）...]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/101576605</link><guid>https://blog.csdn.net/weixin_30907523/article/details/101576605</guid><author>weixin_30907523</author><pubDate>Wed, 25 Sep 2019 21:07:00 +0800</pubDate><description><![CDATA[今天碰到一个比较有疑惑的问题，就是在统计和的时候，我们往往有时候查不到数据，都会再加个 nvl(sum(字段)，0) 来显示这个字段，但是如果我们再加个group by ，就算有加入这个 nvl(null,0) 的这个函数，也查不到一条数据的疑惑进行解释如下：1 首先我们查下这个语句：是查不到一条数据的如下图：select a.area_code, a.calltimes,a.queu...]]></description><category></category></item><item><title><![CDATA[C++ 把引用作为返回值]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/101412874</link><guid>https://blog.csdn.net/weixin_30907523/article/details/101412874</guid><author>weixin_30907523</author><pubDate>Wed, 25 Sep 2019 19:55:00 +0800</pubDate><description><![CDATA[引用作为返回值
1.通过使用引用来替代指针，会使 C++ 程序更容易阅读和维护。
2.C++ 函数可以返回一个引用，方式与返回一个指针类似。
3.当函数返回一个引用时，则返回一个指向返回值的隐式指针。这样，函数就可以放在赋值语句的左边。
注意：
（1）以引用返回函数值，定义函数时需要在函数名前加&amp;
（2）用引用返回一个函数值的最大好处是，在内存中不产生被返回值的副本。
引用作为返...]]></description><category></category></item><item><title><![CDATA[用两个栈实现一个队列（C++）]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/101412875</link><guid>https://blog.csdn.net/weixin_30907523/article/details/101412875</guid><author>weixin_30907523</author><pubDate>Wed, 25 Sep 2019 19:46:00 +0800</pubDate><description><![CDATA[分析

栈：后进先出
队列：先进先出

要使用两个栈实现队列（先进先出），主要思路是
1.插入一个元素：直接将元素插入stack1即可。
2.删除一个元素：当stack2不为空时 ，直接弹出栈顶元素，当stack2为空时，将stack1元素逐个弹出并压入stack2，然后再弹出栈顶元素。
具体看下面的代码。
代码实现
#include &lt;iostream&gt;
#include ...]]></description><category></category></item><item><title><![CDATA[List转数组]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/101483214</link><guid>https://blog.csdn.net/weixin_30907523/article/details/101483214</guid><author>weixin_30907523</author><pubDate>Wed, 25 Sep 2019 15:58:00 +0800</pubDate><description><![CDATA[　　ArrayList&lt;String&gt; list=new ArrayList&lt;String&gt;();
　　String[] strings = new String[list.size()];
　　list.toArray(strings);

转载于:https://www.cnblogs.com/helloworldmybokeyuan/p/11585272...]]></description><category></category></item><item><title><![CDATA[数组如何转换成List集合]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/101483215</link><guid>https://blog.csdn.net/weixin_30907523/article/details/101483215</guid><author>weixin_30907523</author><pubDate>Wed, 25 Sep 2019 15:52:00 +0800</pubDate><description><![CDATA[问题描述：对于给定的如下数组，如何转换成List集合？
String[] array = {"a","b","c"};
参考stackoverflow总结如下几种写法：
1.使用原生方式，拆分数组，添加到List
List&lt;String&gt; resultList = new ArrayList&lt;&gt;(array.length);
for (String s ...]]></description><category></category></item><item><title><![CDATA[jdk1.8新特性（三）-stream流详解02]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/101483211</link><guid>https://blog.csdn.net/weixin_30907523/article/details/101483211</guid><author>weixin_30907523</author><pubDate>Wed, 25 Sep 2019 15:49:00 +0800</pubDate><description><![CDATA[1. 收集器简介
　　收集器用来将经过筛选、映射的流进行最后的整理，可以使得最后的结果以不同的形式展现。
　　collect方法即为收集器，它接收Collector接口的实现作为具体收集器的收集方法。
　　Collector接口提供了很多默认实现的方法，我们可以直接使用它们格式化流的结果；也可以自定义Collector接口的实现，从而定制自己的收集器。
　　这里先介绍Collec...]]></description><category></category></item><item><title><![CDATA[jdk1.8新特性(二)-stream流详解01]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/101483212</link><guid>https://blog.csdn.net/weixin_30907523/article/details/101483212</guid><author>weixin_30907523</author><pubDate>Wed, 25 Sep 2019 15:41:00 +0800</pubDate><description><![CDATA[1. 流的基本概念

1.1 什么是流？
　　流是Java8引入的全新概念，它用来处理集合中的数据，暂且可以把它理解为一种高级集合。
众所周知，集合操作非常麻烦，若要对集合进行筛选、投影，需要写大量的代码，而流是以声明的形式操作集合，它就像SQL语句，我们只需告诉流需要对集合进行什么操作，它就会自动进行操作，并将执行结果交给你，无需我们自己手写代码。
因此，流的集合操作对我们...]]></description><category></category></item><item><title><![CDATA[CrawlSpiders简介]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/102108258</link><guid>https://blog.csdn.net/weixin_30907523/article/details/102108258</guid><author>weixin_30907523</author><pubDate>Wed, 25 Sep 2019 15:33:00 +0800</pubDate><description><![CDATA[转：https://www.cnblogs.com/ellisonzhang/p/11124516.html#4295547
一、CrawlSpiders类简介

通过下面的命令可以快速创建 CrawlSpider模板 的代码：
scrapy genspider -t crawl tencent tencent.com

上一个案例中，我们通过正则表达式，制作了新的ur...]]></description><category></category></item><item><title><![CDATA[jdk1.8新特性（一）-函数式]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/101483209</link><guid>https://blog.csdn.net/weixin_30907523/article/details/101483209</guid><author>weixin_30907523</author><pubDate>Wed, 25 Sep 2019 13:12:00 +0800</pubDate><description><![CDATA[1.0 Lambda表达式
　　Lambda表达式的标准格式为：格式说明：


小括号内的语法与传统方法参数列表一致：无参数则留空；多个参数则用逗号分隔。
-&gt;是新引入的语法格式，代表指向动作。
大括号内的语法与传统方法体要求基本一致。



　　在Lambda标准格式的基础上，使用省略写法的规则为：


小括号内参数的类型可以省略；
如果小括号内有且...]]></description><category></category></item><item><title><![CDATA[SQL四种语言：DDL,DML,DCL,TCL]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/101412872</link><guid>https://blog.csdn.net/weixin_30907523/article/details/101412872</guid><author>weixin_30907523</author><pubDate>Tue, 24 Sep 2019 23:41:00 +0800</pubDate><description><![CDATA[DDL（Data Definition Language）数据库定义语言
statements are used to define the database structure or schema.
DDL是SQL语言的四大功能之一。
用于定义数据库的三级结构，包括外模式、概念模式、内模式及其相互之间的映像，定义数据的完整性、安全控制等约束
DDL不需要commit.
CREATE
A...]]></description><category></category></item><item><title><![CDATA[python-字典]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/102003122</link><guid>https://blog.csdn.net/weixin_30907523/article/details/102003122</guid><author>weixin_30907523</author><pubDate>Tue, 24 Sep 2019 14:37:00 +0800</pubDate><description><![CDATA[python3.6之后字典就是有序的了 。。。。之前的是无序的

字典：帮助用户去表示一个事物的信息（事物是有多个属性）

info={'name':'yang','age':18,'gender':'男'}   #创建字典  key  value形式
print('名字:',info['name'])  #调用
print('年龄:',info['age'])
名字: ...]]></description><category></category></item><item><title><![CDATA[变态跳台阶]]></title><link>https://blog.csdn.net/weixin_30907523/article/details/101412873</link><guid>https://blog.csdn.net/weixin_30907523/article/details/101412873</guid><author>weixin_30907523</author><pubDate>Mon, 23 Sep 2019 23:40:00 +0800</pubDate><description><![CDATA[分析
1.归纳：求出前几个的方法数：
1 -&gt; 1
2 -&gt; 2
3 -&gt; 4
4 -&gt; 8
...
可推出：F(n) = 2*F(n-1)
递归求解
class Solution {
public:
    int jumpFloorII(int number) {
        if(number &lt;= 2)
        {
           ...]]></description><category></category></item></channel></rss>