JavaSE初步学习笔记】的更多相关文章

PS:个人用来随时记录学习的过程,格式比较混乱,仅供个人参考与复习知识点 Dos命令行,课程中常见的命令 Dir:列出当前目录下包含的文件 Md:在当前目录下创建文件 Rd:在当前目录下删除指定文件夹(文件必须是空的) Cd:进入下一级目录 Cd..:一级一级向上层目录返回 Cd/:直接回退到根目录 Del:删除文件时使用.Del+文件夹名  是删除该文件夹中的内容 Del+空格+*.后缀名 删除当前文件夹中指定类型的文件 Exit:退出dos命令行 "+"运算符两侧的操作数中只要有一…
https://www.jianshu.com/p/c29bb20908da Android NDK开发及OpenCV初步学习笔记 Super_圣代 关注 2017.08.19 00:55* 字数 663 阅读 608评论 0喜欢 2 最近手头的项目接近尾声,时间也稍微宽裕了些,所以抽空准备再深入学习Android,为即将到来的实习期做准备. 1.NDK 首先,什么是NDK? NDK全称:Native Development Kit,顾名思义是Android的原生开发工具,Android平台从诞…
一,意图   定义一个用于创建对象的接口,让子类决定实例化哪一个类.工厂方法使一个类的实例化延迟到其子类. 二,别名   虚构造器 Virtual Constructor 三,适用性 当一个类不知道它所必须创建的对象的类的时候. 当一个类希望由它的子类来指定它所创建的对象的时候. 当类将创建对象的职责委托给多个帮助子类的某一个,并且你希望将哪一个帮助子类是代理者这一信息局部化的时候. 四,结构 五,示例   如该模式的意图所示,工厂方法模式并不难理解.我们沿用抽象工厂模式的示例例子,观察改用工厂…
“矩阵代数初步”(Introduction to MATRIX ALGEBRA)课程由Prof. A.K.Kaw(University of South Florida)设计并讲授. PDF格式学习笔记下载(Academia.edu) 第10章课程讲义下载(PDF) Summary Definition If $[A]$ is a $n\times n$ matrix, then $[X]\neq \vec0$ is an eigenvector of $[A]$ if $$[A][X] = \…
“矩阵代数初步”(Introduction to MATRIX ALGEBRA)课程由Prof. A.K.Kaw(University of South Florida)设计并讲授. PDF格式学习笔记下载(Academia.edu) 第9章课程讲义下载(PDF) Summary Ill-conditional system A system of equations is considered to be ill-conditioned if a small change in the coe…
“矩阵代数初步”(Introduction to MATRIX ALGEBRA)课程由Prof. A.K.Kaw(University of South Florida)设计并讲授. PDF格式学习笔记下载(Academia.edu) 第8章课程讲义下载(PDF) Summary Algorithm Given a general set of $n$ equations and $n$ unknowns $$\begin{cases}a_{11}x_1 + a_{12}x_2 +\cdots…
“矩阵代数初步”(Introduction to MATRIX ALGEBRA)课程由Prof. A.K.Kaw(University of South Florida)设计并讲授. PDF格式学习笔记下载(Academia.edu) 第7章课程讲义下载(PDF) Summary For a nonsingular matrix $[A]$ on which one can always write it as $$[A] = [L][U]$$ where $[L]$ is a lower tr…
“矩阵代数初步”(Introduction to MATRIX ALGEBRA)课程由Prof. A.K.Kaw(University of South Florida)设计并讲授. PDF格式学习笔记下载(Academia.edu) 第6章课程讲义下载(PDF) Summary Gaussian elimination consists of two steps: Forward Elimination of Unknowns In this step, the unknown is elim…
“矩阵代数初步”(Introduction to MATRIX ALGEBRA)课程由Prof. A.K.Kaw(University of South Florida)设计并讲授. PDF格式学习笔记下载(Academia.edu) 第5章课程讲义下载(PDF) Summary Consistent and inconsistent system A system of equations $$[A][X]=[B]$$ where $[A]$ is called the coefficient…
“矩阵代数初步”(Introduction to MATRIX ALGEBRA)课程由Prof. A.K.Kaw(University of South Florida)设计并讲授. PDF格式学习笔记下载(Academia.edu) 第4章课程讲义下载(PDF) Summary Transpose Let $[A]$ be a $m\times n$ matrix. Then $[B]$ is the transpose of $[A]$ if $b_{ji} = a_{ij}$ for al…