คำถามติดแท็ก contains

ตัวดำเนินการ / วิธี "มี" ใช้เพื่อพิจารณาว่าคอลเล็กชันเอนทิตีมีองค์ประกอบที่มีคุณสมบัติเฉพาะหรือไม่

14
Java ตรวจสอบแบบง่ายว่า int array มี int หรือไม่
โดยทั่วไปเพื่อนของฉันบอกว่าฉันสามารถทำให้โค้ดสั้นลงได้โดยใช้วิธีอื่นในการตรวจสอบว่าอาร์เรย์ int มี int หรือไม่แม้ว่าเขาจะไม่บอกฉันว่ามันคืออะไร: P ปัจจุบัน: public boolean contains(final int[] array, final int key) { for (final int i : array) { if (i == key) { return true; } } return false; } ลองใช้สิ่งนี้ด้วยแม้ว่ามันจะส่งคืนเท็จเสมอด้วยเหตุผลบางประการ public boolean contains(final int[] array, final int key) { return Arrays.asList(array).contains(key); } มีใครช่วยฉันได้ไหม ขอขอบคุณ.
98 java  arrays  int  contains 

7
.Contains () ในรายการของคลาสออบเจ็กต์แบบกำหนดเอง
ฉันกำลังพยายามใช้.Contains()ฟังก์ชันนี้กับรายการวัตถุที่กำหนดเอง นี่คือรายการ: List<CartProduct> CartProducts = new List<CartProduct>(); และCartProduct: public class CartProduct { public Int32 ID; public String Name; public Int32 Number; public Decimal CurrentPrice; /// <summary> /// /// </summary> /// <param name="ID">The ID of the product</param> /// <param name="Name">The name of the product</param> /// <param name="Number">The total number of that …
95 c#  list  class  contains 

6
ฉันจะทำให้ jQuery ประกอบด้วยตัวพิมพ์เล็กและใหญ่รวมถึง jQuery 1.8+ ได้อย่างไร
ฉันกำลังพยายามใช้ตัวพิมพ์ "มี" อย่างไม่ใส่ใจ ฉันลองใช้วิธีแก้ปัญหาที่คำถาม stackoverflow ต่อไปนี้ แต่ไม่ได้ผล: มี jQuery ที่ไม่คำนึงถึงตัวพิมพ์เล็กและใหญ่: มีตัวเลือกหรือไม่ เพื่อความสะดวกระบบจะคัดลอกโซลูชันที่นี่: jQuery.extend( jQuery.expr[':'], { Contains : "jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())>=0" }); นี่คือข้อผิดพลาด: Error: q is not a function Source File: /js/jquery-1.4.js?ver=1.4 Line: 81 นี่คือที่ที่ฉันใช้: $('input.preset').keyup(function() { $(this).next().find("li").removeClass("bold"); var theMatch = $(this).val(); if (theMatch.length > 1){ theMatch = "li:Contains('" + theMatch + "')"; …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.