Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
static
- Page 1
Re: How do you do keyword research for SEO?
Digital Media
Digital Marketing
Search Engine Strategies
10 Hours Ago
by bijutoha
… to expand your keyword list   ![Google-SERP-3.png…
Re: Android Native - How To Request Notification Permissions
Programming
Mobile Development
6 Days Ago
by Erussuhsh
Hi I'm new android app development can you teach me
Integrating OpenAI Web Search API in LangGraph
Programming
Computer Science
2 Weeks Ago
by usmanmalik57
…['output'][0]['text']) ``` **Output:**  Again, the model correctly…output'][0]['annotations']] sources ``` **Output:**  ## Conclusion Web search …
Error when sign in with Google
Community Center
Meta DaniWeb
1 Week Ago
by John_165
Get error when sign in with Google 
Re: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
3 Weeks Ago
by Reverend Jim
…location tab shows something like   You can change the…
Re: Anti-Hotlinking Script for WP on Apache (.htaccess) - Linkspam Prevention
Programming
Web Development
2 Weeks Ago
by Dani
CDNs such as Cloudflare offer hotlink protection via a toggle switch you could enable. But, yeah, the primary benefit of hotlink protection is that a website doesn't upload images to *your* site, and then include them in their own site without having to pay for the bandwidth of hosting the images. Just make sure that if you turn on hotlink …
Re: Error when sign in with Google
Community Center
Meta DaniWeb
1 Week Ago
by Dani
Thanks for the heads up! I’m able to reproduce it and I’ll look into it shortly. I’m currently still in bed.
Re: Error when sign in with Google
Community Center
Meta DaniWeb
1 Week Ago
by Dani
It should be fixed now. Unfortunately it's been broken for quite awhile and I didn't realize it. It broke on the 5th of the month when I went through all the code and mass-added a wrapper that ran some sanitization stuff. So sorry about that! Either way, it's fixed now.
Re: Error when sign in with Google
Community Center
Meta DaniWeb
1 Week Ago
by Dani
A little more information: I had a variable called `$uri` that I assumed was a URI, and so decided to be smart and add a sanitization wrapper around it to ensure it was a valid URI. It turned out that the variable was *not* meant to store a fully-formed URI but actually only part of one, and therefore always failed the check.
DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization
Programming
Computer Science
2 Months Ago
by usmanmalik57
…, user_query) print(response) ``` **Output:**  The response shows that…']].mean() average_scores.head() ``` **Output:**  The above output shows…
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
1 Month Ago
by usmanmalik57
….shape) dataset.head() ``` **Output:**  The `content` column contains….shape}") filtered_dataset.head() ``` **Output:**  Next, we will define…
Null Pointer Exception in Java Application – Need Fixing
Programming
Software Development
2 Months Ago
by YashSmith
… property. Here's the problematic code: public class Test { public
static
void main(String[] args) { String text = null; System.out.println…
Re: Editor crashes browser
Community Center
Meta DaniWeb
2 Months Ago
by Mr.M
…plug-in    Now how good at…
Re: Show computer name on a label
Programming
Software Development
2 Months Ago
by Mr.M
See 
Re: Upgrade to Fiber internet
Hardware and Software
Networking
1 Month Ago
by Reverend Jim
… to pay for them to fix a problem with major
static
on my phone line. Instead I switched to Shaw for…
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
1 Month Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by Pelorus_1
Great breakdown of DeepSeek R1 Distill LLaMA 70B! The explanation of text classification and summarization is clear and insightful. Appreciate the practical examples—makes implementation much easier. Thanks for sharing!
Re: Google Search Console -> Page indexing
Digital Media
Digital Marketing
Search Engine Strategies
1 Month Ago
by ashleydent4u
It sounds like you're on the right track already, and your robots.txt file actually looks okay at first glance. However, if 1.13K pages aren’t being indexed, it could be due to a combination of issues like low-quality content, duplicate pages, or crawl budget limits (especially with Blogger sites). In Search Console, head to the “Pages” section …
Re: static
Programming
Software Development
17 Years Ago
by alsoumhi
… variables(the class variabes)which don't have the word
static
in the main method or invoking other methods those don… method the class variables that don't have the word
static
by (object name . class variable) why again because of the… object. however the methods those don't have the word
static
they are able to use the variable class because they…
static variable and static member programs
Programming
Software Development
13 Years Ago
by Alokkumar11
static
variable and
static
function programs.
static function? help
Programming
Software Development
20 Years Ago
by mattcplusplus
static
void myInit() { PrimitiveType=GL_POLYGON; LineSegments=3; } can someone tell me what
static
does to the function?
Re: static list
Programming
Software Development
10 Years Ago
by JamesCherrill
Static
methods execute without an assocated instance of the class, so they don't have any direct access to any instance variables or instance methods. They only have direct access to
static
variables and
static
methods. It's nothing to do with get/set as such.
Re: static constructor
Programming
Software Development
15 Years Ago
by sknake
… namespace Constructor { class Test1 { private
static
int id ; //
Static
constructor, value of data member id is … of initialization is not possible at the time of declaration.
static
Test1() { if( Test.Id < 10 ) …20; } else { id = 100; } Console.WriteLine("
Static
<Class> Constructor for Class Test1 Called.."); } …
Re: Static vs non-static methods
Programming
Software Development
15 Years Ago
by Rashakil Fol
Static
methods are just global functions that could very well have nothing to do with the class you've put them in. Methods that are not
static
are merely functions that, in their definition, implicitly take the object they're called on as the first parameter.
Re: Static or not problem.
Programming
Software Development
16 Years Ago
by dickersonka
Static
is meant to be thought of as that it doesn't apply to a specific instance of the object or class. As java addict's example, you can printMyName at any time without creating an instance.
Re: Static vs Non-Static Methods
Programming
Software Development
15 Years Ago
by Diamonddrake
…it in. an example would be the
static
method "Show" from the
static
class MessageBox. when you need a …messagebox, you just call a
static
method to show it. ex. [code] System.Windows.Forms.…Show("some message"); [/code] if it weren't
static
, you would first have to create an instance of the…
Re: static function
Programming
Software Development
18 Years Ago
by ~s.o.s~
… "this" argument, can access only
static
data members and can be called with or without… a class. eg. [code] class Shape {
static
double trans[2][2] // a transformation matrix // ... public…:
static
void scale(double s); //multiplies trans with s }; …
Re: static constructor
Programming
Software Development
15 Years Ago
by kvprajapati
…be called directly. Access modifier are not allowed with
static
constructor. The
static
constructor for a class execute at most once in… a given application domain. The execution of
static
constructor is triggered by the first of the following events… of the class is created. 2. Any of the
static
member of the class is accessed/referenced.
Re: static in main()
Programming
Software Development
12 Years Ago
by poojavb
Static
methods can not directly access any instance variables or methods but they can access them by using their object reference.
Static
methods may even access private instance variables via a object reference. All private instance variables are private to its class, they can be accessed by
static
methods or non-
static
method of the class.
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC