L'auteur ?crit cet article JavaScript tutorial pour Flash ActionScript d?veloppeurs qui ont le m?me int?r?t - comme , travailler avec Flash et ActionScript que vous voulez toujours apprendre de nouvelles choses dans le langage de programmation JavaScript
Programmeurs ActionScript, mais il est aussi un tr?s bon tutoriel pour qui apprendre la programmation orient?e objet JavaScript Cette guides article JavaScript tutorial vous apprend ? construire un plein rempli objet JavaScript avec les m?thodes getter et setter S'il vous pla?t visitez pour plus de d?tails
JavaScript POO Tutorial pour les nuls
? Les pointeurs en JavaScript POO
? POO en JavaScript : Quelques notions de base
? JavaScript POO : M?thodes publiques et priv?es
? Concepts de base en programmation orient?e objet Javascript
- Demo
- Agrandir
- Recharger
- New window
G�n�rez vos vid�os d'entreprise par l'IA avec la voix ou simplement du texte
Votre premi�re application vid�o AI GRATUITE ! Automatisez votre premi�re vid�o AI. Cr�ez votre vid�o professionnelle en 5 minutes gr�ce � l'IA. Aucun �quipement ni comp�tence en montage vid�o requis. Production vid�o sans effort pour les sp�cialistes du marketing de contenu.
Getters and Setters
Now it is possible to use getters and setters. Ofcourse is does not work in IE, so this is pointless but also a bit cool to see how far we could go. Anyway there are 2 ways to define them. Read more about it here. I think the __defineGetter__ way is better; it looks ugly but you still have access to private objects.
Take a look at this getter/setter declaration example. It�s not as clean as AS3 getters/setters but it works like a charm in my browser.
{
/* public getter */
this.__defineGetter__("value", function()
{
alert("getter called; current value: " +value);
return value;
});
/* public setter */
this.__defineSetter__("value", function(val)
{
alert("setter called; new value: " +val);
value = val;
});
// public variable. For a strange reason I have to put this below the get/set definition.
this.value = value || 0xFFFFFF;
}
// create instance of Color
var color = new Color(0xFF0000);
color.value; // getter
color.value = 0xff0000; // setter
Constants
Javascript has a const too, you could use it instead of var. Ofcourse this is not implemented in IE, so it is also pretty pointless to use.
Mix them all
Now lets use namespaces, getters/setters and private/public variables and functions together.
This is a simplified ported version of this Color Class.
With this class you can modify the red,green and blue channels of a
color individually. In the original class it is possible to
lighten/darken the color too, but for this post I left these functions,
because this only illustrates the possibilities of nice OO javascript.
nl.stroep.utils.Color = function( color )
{
/* PUBLIC FUNCTIONS */
this.grayscale = function( val )
{
val = val || 0;
if (val < 0){ val = 0 }
if (val > 255) { val = 255 }
return (val << 16) | (val << | val;
}
/* PRIVATE FUNCTIONS */
function limit( val, lowerLimit, upperLimit )
{
if (val < lowerLimit){ return lowerLimit }
if (val > upperLimit) { return upperLimit }
return val;
}
/* PUBLIC GETTER FUNCTIONS */
this.__defineGetter__("value", function()
{
return (_red << 16) | (_green << | _blue;
})
this.__defineGetter__("red", function()
{
return _red;
})
this.__defineGetter__("green", function()
{
return _green;
})
this.__defineGetter__("blue", function()
{
return _blue;
})
/* PUBLIC SETTER FUNCTIONS */
this.__defineSetter__("value", function(val)
{
_red = val >> 16 & 0xFF; // red
_green = val >> 8 & 0xFF; // green
_blue = val & 0xFF; // blue
_value = val;
})
this.__defineSetter__("red", function(val)
{
_red = val;
_red = limit( _red, 0, 255 );
})
this.__defineSetter__("green", function(val)
{
_green = val;
_green = limit( _green, 0, 255 );
})
this.__defineSetter__("blue", function(val)
{
_blue = val;
_blue = limit( _blue, 0, 255 );
})
/* PRIVATE VARIABLES */
var _value = color;
var _red;
var _green;
var _blue;
/* PUBLIC VARIABLES */
this.value = _value;
};
With this javascript class, you could use it like this:
color.green = 0; // remove green.. now it is red..
color.blue = 255; // add some blue.. now it is purple..
alert(color.value.toString(16)) // alerts FF00FF and that is purple.
Hope you enjoyed this article. Feel free to share or comment.
- Sent (0)
- Nouveau
Générez vos vidéos d'entreprise par l'IA avec la voix ou simplement du texte
chatGPTaz.com
Parlez à ChatGPT dans votre langue maternelle
AppAIVidéo
Votre première application vidéo AI GRATUITE
Deepfake Video
Deepfake AI Video Maker
Deepfake
Deepfake AI Video Maker
AI Deep Fake
Deepfake AI Video Maker
AIvidio
AI Video Mobile Solutions
AIvideos
AI Video Platform & Solutions
AIvedio
AI Video App Maker
Artificial General Intelligence
Ai and higher level Artificial General Intelligence (AGI)
Artificial General Intelligence
Ai and higher level Artificial General Intelligence (AGI)
Faceswap AI en ligne
Échangez des visages, des vidéos, des photos et des GIF instantanément avec de puissants outils d'IA - Faceswap AI Online GRATUIT
Faceswap AI en ligne
Échangez des visages, des vidéos, des photos et des GIF instantanément avec de puissants outils d'IA - Faceswap AI Online GRATUIT
Faceswap AI en ligne
Échangez des visages, des vidéos, des photos et des GIF instantanément avec de puissants outils d'IA - Faceswap AI Online GRATUIT
Powerful AI Presentation PPT Maker for FREE
Build an impressive presentation with our free online AI presentation app
Your next top AI Assistant
Claude AI, developed by Anthropic
Your next top AI Assistant
Claude AI, developed by Anthropic
Temu gratuit 500 $ pour les nouveaux utilisateurs
Claim Free Temu $500 Credit via Affiliate & Influencer Program
Crédits publicitaires TikTok gratuits
Maîtrisez les publicités TikTok pour le marketing de votre entreprise
Dall-E-OpenAI.com
Générez automatiquement des images créatives avec l'IA
chatGPT4.win
Parlez à ChatGPT dans votre langue maternelle
Premier produit d'intelligence artificielle d'Elon Musk - Grok/UN.com
Parlez au chatbot Grok AI dans votre langue
Outily.win
Centre d'outils ouvert et gratuit, utilisable par tous et pour tous, avec des centaines d'outils
GateIO.gomymobi.com
Airdrops gratuits à réclamer et à partager jusqu'à 150 000 $ par projet
iPhoneKer.com
Économisez jusqu'à 630 $ à l'achat d'un nouvel iPhone 16
Acheter le robot Tesla Optimus
Commandez votre robot Tesla Bot : Optimus Gen 2 dès aujourd'hui pour moins de 20 000 $