java.lang.reflect.Constructor.isSynthetic() Method Example



Description

The java.lang.reflect.Constructor.isSynthetic() method returns true if this constructor is a synthetic constructor; returns false otherwise.

Declaration

Following is the declaration for java.lang.reflect.Constructor.isSynthetic() method.

public boolean isSynthetic()

Returns

true if and only if this constructor is a synthetic constructor as defined by The Java Language Specification.

Example

The following example shows the usage of java.lang.reflect.Constructor.isSynthetic() method.

package com.tutorialspoint;

import java.lang.reflect.Constructor;

public class ConstructorDemo {
   public static void main(String[] args) {

      Constructor[] constructors = SampleClass.class.getConstructors();
      System.out.println(constructors[1].isSynthetic());
   }
}

class SampleClass {
   private String sampleField;
   
   public SampleClass(){
   }

   public SampleClass(String sampleField){
      this.sampleField = sampleField;
   }

   public String getSampleField() {
      return sampleField;
   }

   public void setSampleField(String sampleField) {
      this.sampleField = sampleField;
   } 
}

Let us compile and run the above program, this will produce the following result −

false
java_reflect_constructor.htm
Advertisements