-
Notifications
You must be signed in to change notification settings - Fork 0
/
Libreria.cs
68 lines (60 loc) · 1.63 KB
/
Libreria.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace _15_09_15
{
class Libreria
{
public string direccion;
public string nomApe;
public Libro[] ArrayLibros;
public Libreria()
{
ArrayLibros = new Libro[10];
}
public static Libreria operator +(Libreria Libreria1, Libro LibroNuevo)
{
Libreria1.agregarLibro(LibroNuevo);
return Libreria1;
}
public bool agregarLibro(Libro libroRecibido)
{
int indice=this.indiceLibre();
//si hay un indice libre, mete el libro en ese indice libre.
if (indice != -1)
{
this.ArrayLibros[indice] = libroRecibido;
return true;
}
return false;
/*
int i;
for (i = 0; i < this.ArrayLibros.Length; i++)
{
if (this.ArrayLibros[i] == null)
{
this.ArrayLibros[i] = libroR;
return true;
}
}
return false;*/
}
/// <summary>
/// Retornará el primer índice libre, sino retornará -1.
/// </summary>
/// <returns></returns>
public int indiceLibre()
{
int i;
for (i = 0; i < this.ArrayLibros.Length; i++)
{
if (this.ArrayLibros.GetValue(i) == null)
{
return i;//o i+1?
}
}
return -1;
}
}
}