Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AlfredoCU/Go-Struct-Interface
Crear y hacer uso de estructuras, métodos e interfaces.
https://github.com/AlfredoCU/Go-Struct-Interface
go golang
Last synced: 28 days ago
JSON representation
Crear y hacer uso de estructuras, métodos e interfaces.
- Host: GitHub
- URL: https://github.com/AlfredoCU/Go-Struct-Interface
- Owner: AlfredoCU
- License: mit
- Created: 2020-10-23T06:17:49.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-23T06:28:00.000Z (about 4 years ago)
- Last Synced: 2024-08-03T23:27:21.817Z (4 months ago)
- Topics: go, golang
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-golang-repositories - Go-Struct-Interface
README
# Go-Struct-Interface
Crear y hacer uso de estructuras, métodos e interfaces.
- Implementar las siguientes estructuras con sus respectivos atributos:
- Imagen: titulo, formato, canales
- Audio: titulo, formato, duracion (seg)
- Video: titulo, formato, frames
- Crear a cada estructura el método `mostrar()` el cual deberá de imprimir los atributos de cada estructura.
- Crear la interface *Multimedia* la cual tendrá el método `mostrar()`.
- Crear la estructura *ContenidoWeb*, la cual tendrá como atributo un *slice* de la interface *Multimedia.*
- Crear un menú en el main para capturar una imagen, audio o video y agregarlos a un objeto de la clase *ContenidoWeb*. Además de una opción para mostrar, la cual llamará al método `mostrar()` de cada elemento (*Multimedia*) almacenado en el *slice.*