Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7399939
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T04:07:37+00:00 2026-05-29T04:07:37+00:00

Can anybody show an example of how to use heap.heapForEachClass in a select statement?

  • 0

Can anybody show an example of how to use heap.heapForEachClass in a select statement?
It would be great if you could provide some links with different examples of queries (other than those in the oqlhelp page of course 🙂 )

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T04:07:37+00:00Added an answer on May 29, 2026 at 4:07 am

    I don’t believe heap.forEachClass() is meant to be used in a select statement, at least not directly. Consider the fact that it doesn’t return anything:

    var result=heap.forEachClass(function(it){return it;});
    typeof result
    //returns undefined
    

    The OQL used in jhat and VisualVM does support plain ol’ JavaScript, just like the “query” I use above. I believe that the heap.forEachClass() finds more use in either JavaScript-style queries or in JavaScript functions within select-type queries.

    That said, I don’t know why this function exists since the heap.classes() enumeration is much easier to use, both with with select-style queries and plain JavaScript ones.

    You could even even recreate the same functionality as heap.forEachClass() with the following JavaScript function:

    function heapForEachClass(func){
        map(heap.classes(),func)
        return undefined;
    }
    

    Any sample queries that I could provide you would likely be easier written with heap.classes(). For example, you could use heap.forEachClass() to get list of all classes:

    var list=[];
    heap.forEachClass(function(it){
        list.push(it);
    });
    list
    

    but this is more complicated than how you’d do it with heap.classes():

    select heap.classes()
    

    or just

    heap.classes()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anybody show with some examples the exact difference between .. and ... operator?
Can anybody show me (maybe copy/paste a simple code example) how to create the
can anybody show me how to build a string using checkbox. what would be
Can anybody show me example of using Zend_Translate with Array Adapter when I need
Can anybody show me simple working example using Qt(export DLL plugin file) and make
Can anybody show me by giving a simple example code how Wait Group works
Can anybody see what is wrong with this code. it does not show up
Can anybody give any working example of how to read/write Unicode text files using
Can anybody give me a little advice please? I have a string, for example
I have a web site where there are links like <a href=http://www.example.com?read.php=123> Can anybody

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.