码迷,mamicode.com
首页 >  
搜索关键字:person    ( 6232个结果
Java在cmd窗口下手动编译带包package的.java文件并打包
1、编写两个类 在exer目录下编写两个文件 ①Person.java package test;import com.subclass.*; public class Person{ } ②Student.java package com.subclass; public class Studen ...
分类:编程语言   时间:2021-03-03 11:51:30    阅读次数:0
10、面向对象编程OOP
10、面向对象编程OOP 10.1、面向对象思想 物以类聚,分类的思维模式,思考问题首先会解决问题需要那些分类,然后对这些分类进行单独思考,最后,才对某个分类下的细节进行面向过程的思索。 对于描述复杂的事务,为了从宏观上把握,从整体上合理分析,我们需要使用面向对象的思路来分析整个系统,但是,具体到微 ...
分类:其他好文   时间:2021-03-01 13:57:34    阅读次数:0
ES6 Class的继承
//父类 class Person { constructor(name, age) { this.name = name this.age = age } printInfo() { console.log(this.name) console.log(this.age) } } //字类 cla ...
分类:其他好文   时间:2021-02-27 13:29:00    阅读次数:0
JS对象添加属性
JS对象添加属性有俩种方法: person{name:"tom"} person.age = 20;//以点 person['age'] = 20;//以中括号var a = "age";person[a] = 20 但是以person.name方式添加的属性只能添加驼峰命名法的属性名,有特殊字符只 ...
分类:Web程序   时间:2021-02-23 14:16:00    阅读次数:0
Mybatis批量插入,批量更新
批量插入 xml如下: <insert id ="batchInsert" parameterType="java.util.List" useGeneratedKeys="true" keyProperty="id"> insert into t_person(name, age, height, ...
分类:其他好文   时间:2021-02-20 12:17:17    阅读次数:0
[Dart语法]第八章:类
类 类的定义 //定义一个Person的类 class Person { //属性 String userName = 'Tobu'; int age = 25; String blogAdress = 'https://www.cnblogs.com/TobuTobu'; String userI ...
分类:其他好文   时间:2021-02-18 12:55:10    阅读次数:0
LeetCode 数据库之组合两个表
1. 题目 表1: Person ± ± +| 列名 | 类型 |± ± +| PersonId | int || FirstName | varchar || LastName | varchar |± ± +PersonId 是上表主键表2: Address ± ± +| 列名 | 类型 |± ...
分类:数据库   时间:2021-02-17 15:09:12    阅读次数:0
统计学三大相关性系数:pearson,spearman,kendall
目录 person correlation coefficient(皮尔森相关性系数-r) spearman correlation coefficient(斯皮尔曼相关性系数-p) kendall correlation coefficient(肯德尔相关性系数-k) R语言计算correlati ...
分类:其他好文   时间:2021-02-17 14:30:20    阅读次数:0
[LeetCode] 1029. Two City Scheduling 两个城市调度
A company is planning to interview people. Given the array where ,?the cost of flying the person to city is , and the cost of flying the person to cit ...
分类:其他好文   时间:2021-02-17 14:20:21    阅读次数:0
js 对象高级
对象的创建模式 Object构造函数模式 var obj = {}; obj.name = 'Tom' obj.setName = function(name){this.name=name} 对象字面量模式 var obj = { name : 'Tom', setName : function( ...
分类:Web程序   时间:2021-02-16 12:40:05    阅读次数:0
6232条   上一页 1 ... 5 6 7 8 9 ... 624 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!