صفحة 5 من 9 الأولىالأولى 123456789 الأخيرةالأخيرة
النتائج 61 إلى 75 من 124
  1. #61
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    Binary search algorithm=half-interval search

    Binary search compares the target value to the middle element of the array; if they are unequal, the half in which the target cannot lie is eliminated and the search continues on the remaining half until it is successful. If the search ends with the remaining half being empty, the target is not in the array

  2. #62
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    Hash table


    In computing, a hash table (hash map) is a data structure which implements an associative array abstract data type, a structure that can map keys to values.

  3. #63
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    Objects are always passed by reference
    قاعدة مقدسة في mq4

    ضحايا مفاهيم الجافا و c++ ان يتنبهوا لها
    Objects are always passed by reference
    Objects are always passed by reference
    Objects are always passed by reference
    Objects are always passed by reference

  4. #64
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    // These are all assignments, not initializations
    ماهو الفرق بين assignments و initializations
    كود PHP:
    class Something
    {
    private:
        
    int m_value1;
        
    double m_value2;
        
    char m_value3;
     
    public:
        
    Something()
        {
            
    // These are all assignments, not initializations
            
    m_value1 1;
            
    m_value2 2.2;
            
    m_value3 'c';
        }
    }; 

  5. #65
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    dynamic_cast

    Dynamic typecasting is performed using dynamic_cast operator that can be applied only to pointers to classes. Type validation is performed at runtime. This means that the compiler does not check the data type applied for typecasting when dynamic_cast operator is used. If a pointer is converted to a data type which is not the actual type of an object, the result is NULL.

    كود PHP:
    dynamic_cast <type-id> ( expression 
    The type-id parameter in angle brackets should point to a previously defined class type. Unlike C++, expression operand type can be of any value except for void.

    كود PHP:
    class CBar { }; 
    class 
    CFoo : public CBar { }; 
      
    void OnStart() 
      { 
       
    CBar bar;     
    //--- dynamic casting of *bar pointer type to *foo pointer is allowed 
       
    CFoo *foo dynamic_cast<CFoo *>(&bar); // no critical error    
       
    Print(foo);                             // foo=NULL       
    //--- an attempt to explicitly cast a Bar type object reference to a Foo type object is forbidden 
       
    foo=(CFoo *)&bar;                       // critical runtime error 
       
    Print(foo);                             // this string is not executed 
      


  6. #66
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    الكود اسفل لو تشددنا
    كود PHP:
       for( uchar i=0;i<=27;i++) 
    افضل من هذا الكود
    كود PHP:
       for( int i=0;i<=27;i++) 
    الاول يبين انك فاهم ولو تتعامل مع مصفوفات فهو ضد اي خطأ محتمل في الاندكس

  7. #67
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    ما الفرق
    كود PHP:
    void OnStart() 

       for(
    int i=1;i<=5;i++) 
       { 
          static 
    int count=1
          Print(
    i,"   ----A---- ",count); 
          
    count++; 
       } 

    or


    كود PHP:
    void OnStart() 

       for(
    int i=1;i<=5;i++) 
       { 
          
    int count=1
          Print(
    i,"   ----A---- ",count); 
          
    count++; 
       } 


  8. #68
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    difference between declare and define in mql4
    ??

  9. #69
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    5%0


  10. #70
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    A constructor with an initialization list

    الصيغة:
    اسم الكلاس-يعني كونستركتور
    ثم
    المعطيات بين قوسين the list of parameters
    ثم
    كولن : colon
    ثم
    list of initializers يفصل بينها فواصل commas
    ثم
    ثم اقوااس البدي{}
    ثم
    سمي-كولن النهاية ;


    آخر تعديل بواسطة فيلسوف البادية ، 13-10-2017 الساعة 08:46 AM

  11. #71
    الصورة الرمزية 2013Lemsantah
    2013Lemsantah غير متواجد حالياً عضو المتداول العربي
    تاريخ التسجيل
    Sep 2016
    الإقامة
    الجزائر
    المشاركات
    229

    افتراضي

    And opened the fish, did not find the ring
    توقيع العضو
    سبحانك اللهم و بحمدك سبحان الله العظيم

  12. #72
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي


  13. #73
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    لماذا تختلف قيمة وااي

  14. #74
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي


  15. #75
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي


صفحة 5 من 9 الأولىالأولى 123456789 الأخيرةالأخيرة

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17