JSOO - JavaScript Orientado a Objeto
Publicado por Emiliano Eloi Silva Barbosa 14/08/2006
[ Hits: 8.326 ]
Homepage: http://emilianoeloi.com.br
Um exemplo de um JavaScript orientado a objetos
<HTML> <HEAD> <TITLE>Classe Ítem</TITLE> <SCRIPT> /** * @description Classe Item. Manipulação de itens * * @package Teste * @since 2006-04-27 * @author Emiliano ESB <emiliano@portinfo.com.br> * @access public */ function Item(id, description, quantity, price) { this.id = id; this.description = description; if(quantity >=0) this.quantity = quantity; else this.quantity = 0; this.unit_price = price; this.discount; /** * Acessor getAdjustedTotal */ this.getAdjustedTotal = function() { total = this.unit_price * this.quantity total_discount = total * this.discount adjusted_total = total - total_discount return adjusted_total } /** * Mutante setDiscount */ this.setDiscount = function(discount) { if(discount <= 1) this.discount = discount else this.discount = 0 } /** * Acessor getDiscount */ this.getDiscount = function() { return discount } /** * Acessor getQuantity */ this.getQuantity = function() { return quantity } /** * Mutante setQuantity */ this.setQuantity = function(quantity) { if(quantity>=0) quantity = quantity } /** * Acessor getProductID */ this.getProductID = function() { return id } /** * Acessor getDescription */ this.getDescription = function() { return description } } var objMilk = new Item('diary-011','1 Gallon Milk',2,2.50) objMilk.setDiscount(0.15) milk_price = objMilk.getAdjustedTotal(); SAIDA = "Obrigado pela sua compra\n" SAIDA += "Por favor, volte!\n" SAIDA += objMilk.getDescription() + "\t" + milk_price + "\n" SAIDA += "Preço total \t" + milk_price alert(SAIDA) </SCRIPT> </HEAD> <BODY> </BODY> </HTML>
Capturando o nome do browser, vesão, código e plataforma do visitante
Adicionando um texto em movimento em html
Como gerar qualquer emoji ou símbolo unicode a partir do seu teclado
Instalar e Configurar o Slackware Linux em 2025
Como configurar os repositórios do apt no Debian 12 em 2025
Passkeys: A Evolução da Autenticação Digital
Instalação de distro Linux em computadores, netbooks, etc, em rede com o Clonezilla
Muitas dificuldades ao instalar distro Linux em Notebook Sony Vaio PCG-6131L (VPCEA24FM)
Slackpkg+ (Slackpkg Plus) está de volta!
Como dividir duas janelas igualmente e lado-a-lado na sua tela
Configurando o Conky para iniciar corretamente no sistema
3 configurações básicas que podem melhorar muito a sua edição pelo editor nano
Não Consigo instalar o cli-visualizer no Ubuntu 24.04 (1)
compilação samba 4.22 rock linux 9.5 (1)
Erro de segmentação «Segmentation fault (core dumped)» ao retornar obj... (2)
Posso instalar usar o grub sem ter linux instalado, para iniciar o win... (1)
Ocomon 6.0.1 - Problemas ao editar configurações estendidas (4)