✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
A quelle design pattern ce code fait il référence ?
package com.Mystere;public class Mystere { static Mystere instance=null; private Mystere(){ } public static Mystere getInstance(){ if (instance==null){ instance = new Mystere(); } return instance; }}