博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Lintcode455-StudentID-Easy
阅读量:5071 次
发布时间:2019-06-12

本文共 1082 字,大约阅读时间需要 3 分钟。

Implement a class Class with the following attributes and methods:

  1. A public attribute students which is a array of Student instances.
  2. A constructor with a parameter n, which is the total number of students in this class. The constructor should create n Student instances and initialized with student id from 0 ~ n-1

Example

Example 1:

Input: 3Output: [0, 1, 2]Explanation: For 3 students, your cls.students[0] should equal to 0, cls.students[1] should equal to 1 and the cls.students[2] should equal to 2.

Example 2:

Input: 5Output: [0, 1, 2, 3, 4]

注意:

  1. :数组声明不能制定大小(因为只是创建了一个引用变量),数组创建时必须制定大小!
  2. Class类:先声明一个数组类型的引用变量,在构造方法中才能使引用变量指向创建的数组,因为有了参数n,知道数组长度后,才能创建数组。

代码:

class Student {    public int id;        public Student(int id) {        this.id = id;    }}public class Class {    public Student[] students; // 声明Student类型数组,即创建一个引用        public Class(int n) {        this.students = new Student[n]; // 创建Student类型数组,将引用(students)指向此数组        for (int i = 0; i < n; i++) {            students[i] = new Student(i);        }    }}

 

转载于:https://www.cnblogs.com/Jessiezyr/p/10642387.html

你可能感兴趣的文章
移动端页面开发适配 rem布局原理
查看>>
Ajax中文乱码问题解决方法(服务器端用servlet)
查看>>
会计电算化常考题目一
查看>>
阿里云服务器CentOS6.9安装Mysql
查看>>
剑指offer系列6:数值的整数次方
查看>>
js 过滤敏感词
查看>>
poj2752 Seek the Name, Seek the Fame
查看>>
软件开发和软件测试,我该如何选择?(蜗牛学院)
查看>>
基本封装方法
查看>>
bcb ole拖拽功能的实现
查看>>
生活大爆炸之何为光速
查看>>
bzoj 2456: mode【瞎搞】
查看>>
[Typescript] Specify Exact Values with TypeScript’s Literal Types
查看>>
[GraphQL] Reuse Query Fields with GraphQL Fragments
查看>>
Illustrated C#学习笔记(一)
查看>>
理解oracle中连接和会话
查看>>
两种最常用的Sticky footer布局方式
查看>>
Scrapy实战篇(三)之爬取豆瓣电影短评
查看>>
HDU 5510 Bazinga KMP
查看>>
[13年迁移]Firefox下margin-top问题
查看>>