Questions marquées «arrays»

247
Array.push () si n'existe pas?

Comment puis-je pousser dans un tableau si aucune valeur n'existe? Voici mon tableau: [ { name: "tom", text: "tasty" }, { name: "tom", text: "tasty" }, { name: "tom", text: "tasty" }, { name: "tom", text: "tasty" }, { name: "tom", text: "tasty" } ] Si j'ai essayé de pousser à nouveau dans le...

246
React proptype array with shape

Existe-t-il un moyen intégré d'utiliser des proptypes pour garantir qu'un tableau d'objets transmis à un composant est en réalité un tableau d'objets d'une forme spécifique? Peut-être quelque chose comme ça? annotationRanges: PropTypes.array(PropTypes.shape({ start: PropTypes.number.isRequired,...

243
in_array () et tableau multidimensionnel

J'utilise in_array()pour vérifier si une valeur existe dans un tableau comme ci-dessous, $a = array("Mac", "NT", "Irix", "Linux"); if (in_array("Irix", $a)) { echo "Got Irix"; } //print_r($a); mais qu'en est-il d'un tableau multidimensionnel (ci-dessous) - comment puis-je vérifier cette valeur si...

238
Comment inverser un tableau int en Java?

На этот вопрос есть ответы на Stack Overflow на рdedом : Как перевернуть массив в Джаве? J'essaie d'inverser un tableau int en Java. Cette méthode n'inverse pas le tableau. for(int i = 0; i < validData.length; i++) { int temp = validData[i]; validData[i] = validData[validData.length - i - 1];...